Java tutorial
import java.net.URL; import javax.swing.ImageIcon; import javax.swing.JOptionPane; import javax.swing.UIManager; public class Main { public static void main(String[] args) throws Exception { ImageIcon icon = new ImageIcon(new URL("http://www.java2s.com/style/download.png")); UIManager.put("OptionPane.informationIcon", icon); JOptionPane.showMessageDialog(null, "Hello!"); } }