public class Main { public static void main(String[] argv) throws Exception {
URL url = new URL("http://yourServer.com/source.gif");
Image image = ImageIO.read(url);
JFrame frame = new JFrame();
JLabel label = new JLabel(new ImageIcon(image));
frame.getContentPane().add(label, BorderLayout.CENTER);
frame.pack();
frame.setVisible(true);
}
}