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.w3cschool.cn/style/download.png"));
UIManager.put("OptionPane.informationIcon", icon);
JOptionPane.showMessageDialog(null, "Hello!");
}
}