Show animated GIF

后端 未结 9 1747
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-27 05:38

How do you display an animated GIF in a Java application?

9条回答
  •  孤独总比滥情好
    2020-11-27 06:27

    For loading animated gifs stored in a source package (in the source code), this worked for me:

    URL url = MyClass.class.getResource("/res/images/animated.gif");
    ImageIcon imageIcon = new ImageIcon(url);
    JLabel label = new JLabel(imageIcon);
    

提交回复
热议问题