向各位高人请教如何在frame框架中显示gif动态图片
小弟初学java 请各位高人指点一下如何在frame框架中显示gif动态图片谢谢
Swing 的 JFrame?
还是awt 的 Frame?
JFrame 里放个JPanel, JPanel 里放一个 JLabel, 把你的图像存到JLabel 里。
引自java api --> JLabel --> how to use JLabel
ImageIcon icon = createImageIcon("middle.gif");
. . .
label1 = new JLabel("Image and Text", --从这
icon,
JLabel.CENTER);
//Set the position of the text, relative to the icon:
label1.setVerticalTextPosition(JLabel.BOTTOM);
label1.setHorizontalTextPosition(JLabel.CENTER);
label2 = new JLabel("Text-Only Label"); --到这 没啥用
label3 = new JLabel(icon); --这个是你要的
然后用 panel.add(label3);
frame.add(panel);