How do you display an animated GIF in a Java application?
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);