Search
Sponsors
Sponsors

Archive for the ‘Beginners’ Category

hello world , swing style

Thursday, February 19th, 2009
hello world , swing style

import javax.swing.JOptionPane;

public class Swing {

   public static void main(String[] args) {
      JOptionPane.showMessageDialog( null, "Hello World!" );
   }

}