在输出标签上显示,但图像没有。当我删除整个标签部分时它会这样做。我不知道我是否也必须使用 clearRect 方法。
public class Applet1 extends JApplet{
Image img;
JLabel label;
public void init(){
img = getImage(getDocumentBase(), getParameter("imagePath"));
label = new JLabel(getParameter("labelText"));
label.setFont(new Font(getParameter("labelFont"), Font.PLAIN, Integer.parseInt(getParameter("labelSize"))));
add(label);
setVisible(true);
}
public void paint(Graphics g){
g.clearRect(0, 0, 300, 200);
g.drawImage(img, 0, 0, 300, 200, this);
}
}