Loading animated GIF in JLabel weirdness

前端 未结 3 673
清歌不尽
清歌不尽 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条回答
  •  -上瘾入骨i
    2021-01-13 00:55

    You can try loading your GIF file like that:

    public class Test extends JPanel {
        public Test() {
            ImageIcon imageIcon =
              new ImageIcon(Test.this.getClass().getResource("starzoom-thumb.gif"));
        }
    }
    

    Or using Test.class.getResouce() if your context is static.

提交回复
热议问题