This tutorial shows how to create a Java application which shows "Hello World" in a Window. more >>
public static void main(String[] args){
[Your code]
}
public HelloWorld(){
super("Hello World");
getContentPane().add(new JLabel("Hello World"));
pack();
}
HelloWorld frame=new HelloWorld();
frame.setVisible(true);