我正在尝试在JLabel中加载动画GIF。

尽管这可行:

URL urlsd;
try {
    urlsd = new URL("http://pscode.org/media/starzoom-thumb.gif");
    ImageIcon imageIcon = new ImageIcon(urlsd);
    JLabel progress = new JLabel(imageIcon);
    progress.setBounds(5, 20, 66, 66);
    contentPane.add(progress);
} catch (MalformedURLException e) {
    e.printStackTrace();
}

另一方面,这不是,我也不想从URL获取GIF,因为我已经有了GIF。加载结果仅显示GIF的第一帧:
try {
    ImageIcon imageIcon = new ImageIcon(ImageIO.read(ClassLoader.getSystemResourceAsStream("res/images/progress_indicator.gif")));

    JLabel progress = new JLabel(imageIcon);
    imageIcon.setImageObserver(progress);
    progress.setBounds(5, 20, 66, 66);
    contentPane.add(progress);
} catch (MalformedURLException e) {

    e.printStackTrace();
}

我想一定是有原因的,但是我找不到。

谢谢!
亚历克斯

最佳答案

您可以尝试像这样加载GIF文件:

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

或者,如果您的上下文是静态的,则使用Test.class.getResouce()

关于java - 在JLabel怪异中加载GIF动画,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10622303/

10-14 11:29