Hi aman. Vikas has rightly pointed out to the problem. I will like to
further add why this problem occurs.
The error messages which you saw occurs commonly on Microsoft Windows
Systems. It must have been something like this:
'javac' is not recognized as an internal or external command,
operable program or batch file
This message means that Windows cannot find the compiler (javac).
Here's one way to tell Windows where to find javac. At the prompt type
the following command and press Enter:
C:> "\Program Files\Java\jdk1.6.0_<version>\bin\javac
HelloWorldApp.java
If you choose this option, you'll have to precede your javac and java
commands with C:> "\Program Files\Java\jdk1.6.0_<version>\bin\ each
time you compile or run a program. To avoid this extra typing and to
be able to conveniently run the JDK executables (javac.exe, java.exe,
javadoc.exe, etc.) from any directory without having to type the full
path of the command, you should update the PATH variable.
To set the PATH permanently, add the full path of the
jdk1.6.0_<version>\bin directory to the PATH variable. Typically this
full path looks something like C:\Program Files\Java\jdk1.6.0_<version>
\bin. Set the PATH as follows on Microsoft Windows:
1. Click Start > Control Panel > System on Windows XP or Start
> Settings > Control Panel > System on Windows 2000.
2. Click Advanced > Environment Variables.
3. Add the location of bin folder of JDK installation for PATH
in User Variables and System Variables. A typical value for PATH is:
C:\Program Files\Java\jdk1.6.0_<version>\bin
The PATH environment variable is a series of directories separated by
semi-colons (;) and is not case sensitive. Microsoft Windows looks for
programs in the PATH directories in order, from left to right. You
should only have one bin directory for a JDK in the path at a time.
Those following the first instance are ignored. If one is already
present, update it to jdk1.6.0_<version>\bin. If you are not sure
where to add the path, add it to the right end of the PATH in the User
Variables.
The new path takes effect in each new command window you open after
setting the PATH variable.
Hope this will run your first java program. Do write back to the group
whether your problem is solved or not.