Search
Sponsors
Sponsors

Posts Tagged ‘showMessageDialog’

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!" );
   }

}
Translate