Error : 'java' is not recognized as an internal or external command, operable program or batch file.
- by Setu
I have my application online on the Google Apps Engine. When I deploy this application, this error is generated.
I am using Netbeans 6.9. My jdk is installed at : "C:\Program Files\Java\jdk1.6.0_23\". I have installed Google App Engine for Java. This application is getting deployed & run on localhost very well. I am also able to start Google App Engine Server. I have set Environment variables as :
1) classpath : C:\Program Files\Java\jdk1.6.0_23\bin;
2) path : C:\Program Files\Java\jdk1.6.0_23\bin;
3) JAVA_HOME : C:\Program Files\Java\jdk1.6.0_23\bin;
4) include : C:\Program Files\Java\jdk1.6.0_23\include;
5) lib : C:\Program Files\Java\jdk1.6.0_23\lib;
However, in system32, I am not finding java.exe, javac.exe or javawc.exe.
Also, while running this :
1) java.exe
2) javac.exe
3) java -version
from Command Line, they give proper output.
How do I make my application properly deployed ?