我试图创建存储在一个jar文件中的gif动画一个的ImageIcon。
ImageIcon imageIcon = new ImageIcon(ImageIO.read(MyClass.class.getClassLoader().getResourceAsStream("animated.gif")));
加载图像,但只有动画GIF的第一帧。 动画不能播放。
如果我从一个文件中加载文件系统上的GIF动画,按预期工作的一切。 动画播放通过所有的帧。 所以这工作原理:
ImageIcon imageIcon = new ImageIcon("/path/on/filesystem/animated.gif");
我怎样才能加载GIF动画成JAR文件一个ImageIcon?
编辑:这是一个完整的测试用例,为什么不这样显示的动画?
import javax.imageio.ImageIO;
import javax.swing.*;
public class AnimationTest extends JFrame {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
AnimationTest test = new AnimationTest();
test.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
test.setVisible(true);
}
});
}
public AnimationTest() {
super();
try {
JLabel label = new JLabel();
ImageIcon imageIcon = new ImageIcon(ImageIO.read(AnimationTest.class.getClassLoader().getResourceAsStream("animated.gif")));
label.setIcon(imageIcon);
imageIcon.setImageObserver(label);
add(label);
pack();
} catch (Exception e) {
e.printStackTrace();
}
}
}