Home Java SCJP SCWCD Servlet Submit News Contact Us Site Map


Over 500 magazines for free (including Oracle Magazine)!

Yes all of them are FREE. You can subscribe to ALL of them.
Click here to apply today!

JavaDeveloper.co.in network has launched a dedicated site just for Java Examples. You can now learn java language by examples.

Please visit Java Examples to get started !

/*

Java Hello World example.

*/

public class HelloWorldExample{

public static void main(String args[]){

/*

Use System.out.println() to print on console.

*/

System.out.println("Hello World !");

}

}

/*

OUTPUT of the above given Java Hello World Example would be :

Hello Wolrd !

*/

For more java examples please visit Java Examples

Home Java SCJP SCWCD Servlet Site map