Show animated GIF

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

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

9条回答
  •  粉色の甜心
    2020-11-27 06:12

    I came here searching for the same answer, but based on the top answers, I came up with an easier code. Hope this will help future searches.

    Icon icon = new ImageIcon("src/path.gif");
                try {
                    mainframe.setContentPane(new JLabel(icon));
                } catch (Exception e) {
                }
    

提交回复
热议问题