Hello World Java Swing
import javax.swing.*;
public class HelloSwing {
public static void main(String args[]) {
JOptionPane.showMessageDialog(null, "Hello World!");
System.exit(0);
}
}
If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.

