当前位置: 技术问答>java相关
如何才能更改label上的图片?
来源: 互联网 发布时间:2015-06-20
本文导语: ImageIcon pic = new ImageIcon(".\ms.jpg"); JLabel label1 = new JLabel(pic); 用上面的方法装上了一张图片? 用什么样的函数或方法将label1上的图片换成另外一张? | setIcon() | javax.swing C...
ImageIcon pic = new ImageIcon(".\ms.jpg");
JLabel label1 = new JLabel(pic);
用上面的方法装上了一张图片?
用什么样的函数或方法将label1上的图片换成另外一张?
JLabel label1 = new JLabel(pic);
用上面的方法装上了一张图片?
用什么样的函数或方法将label1上的图片换成另外一张?
|
setIcon()
|
javax.swing
Class JLabel
java.lang.Object
|
+-java.awt.Component
|
+-java.awt.Container
|
+-javax.swing.JComponent
|
+-javax.swing.JLabel
setIcon
public void setIcon(Icon icon)
Defines the icon this component will display. If the value of icon is null, nothing is displayed.
Class JLabel
java.lang.Object
|
+-java.awt.Component
|
+-java.awt.Container
|
+-javax.swing.JComponent
|
+-javax.swing.JLabel
setIcon
public void setIcon(Icon icon)
Defines the icon this component will display. If the value of icon is null, nothing is displayed.
|
在这句之后最好加一句 repaint, 或者revalidate