Hello I am writing a GUI application on Java 1.6 with Swing.
I have a pop up screen that should display a gif animation while my Swing gui is loading and also a litt
Inside your JFrame or whatever, use this :
Icon imgIcon = new ImageIcon(this.getClass().getResource("ajax-loader.gif"));
JLabel label = new JLabel(imgIcon);
label.setBounds(669, 42, 45, 15); // You can use your own values
frame.getContentPane().add(label);
Source : How to display an animated gif in java swing