[KEY : HELLO WORLD, JAVA FIRST PROGRAM, RUN JAVA PROGRAM]
Java Hello World program(first java program)
- Make sure class path has been set.(To set class path: Copy your bin folder location-> Right click on "My Computer" icon -> Select Advanced tab -> Click on Environment Variable button -> From System variable pane(lower pane) select path click on Edit button -> At variable value field put semicolon (;) and paste bin folder location and save )
- start notepad and copy the following code
class Helloworld { public static void main(String str[]) { system.out.println("Hello World"); } } - Save file as Helloworld.java(same as your class name).
- Open CMD goto your folder where program is saved.
- Type javac Helloworld.java(it will compile you program).
- Now run with java Helloworld