This article is abut how to start with eclipse hello world java project.
Prerequisite: Java must be installed.
In eclipse click on File -> New Project -> Java Project (as below)
It will open new java project wizard. (as below)
Enter a valid a project name in project name text box. Click next (or one can directly click on finish also)
Click on finish on next wizard page. (as below)
Now create a new java class in src package.
On click of class will open a page for new class entry. Enter valid class name in name text box.
Also check main method check box as below. It will create a main method in class itself.
Now a add sys out statement in main method. (as below)
Noe one can run this as java application. (as below)
It will first compile and then run TestProject application.
On console it will print result. ‘Hello World !!!’