I think that this question was already answered here:
How do I run a Java program from the command line on Windows?
and the sorce is here:
http://www.skylit.com/javamethods/faqs/javaindos.html
For this example your file is in C:\mywork\
Type
C:\> cd \mywork
This makes C:\mywork
the current directory.
C:\mywork> dir
This displays the directory contents. You should see HelloWorld.java among the files.
C:\mywork> set path=%path%;C:\Program Files\Java\jdk1.8.0_51\bin
(use the JDK folder for the version installed on your system). This tells the system where to find JDK programs.
C:\mywork> javac HelloWorld.java
This runs javac.exe, the compiler. You should see nothing but the next system prompt...
C:\mywork> dir
javac has created the HelloWorld.class file. You should see HelloWorld.java and HelloWorld.class among the files.
C:\mywork> java HelloWorld
This runs the Java interpreter. You should see the program output:
Hello, World!
If the system cannot find javac
, check the set path command. If javac
runs but you get errors, check your Java text. If the program compiles but you get an exception, check the spelling and capitalization in the file name and the class name and the java HelloWorld
command. Java is case-sensitive!