Loading animated GIF in JLabel weirdness

前端 未结 3 712
清歌不尽
清歌不尽 2021-01-13 00:13

I\'m trying to load an animated GIF in a JLabel.

While this works:

URL urlsd;
try {
    urlsd = new URL(\"http://pscode.org/media/starzoom-thumb.gif\         


        
3条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-13 00:56

    Below code worked for me, it will show the animation instead of first frame of the image.

    public class Test extends JPanel {
        public Test() {
            ImageIcon yyyyIcon = new ImageIcon(xxx.class.getClassLoader().getResource("yyyy.gif"));
            connectionLabel.setIcon(yyyy);   
        }
    }
    

提交回复
热议问题