Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.net.URL;

import javax.swing.ImageIcon;
import javax.swing.JOptionPane;

public class Main {
    public static void main(String[] args) throws Exception {
        final ImageIcon icon = new ImageIcon(new URL("http://www.java2s.com/style/download.png"));
        JOptionPane.showMessageDialog(null, "Blah blah blah", "About", JOptionPane.INFORMATION_MESSAGE, icon);
    }
}