Error : 'java' is not recognized as an internal or external command, operable program or batch file.
Posted
by
Setu
on Stack Overflow
See other posts from Stack Overflow
or by Setu
Published on 2011-02-05T07:20:50Z
Indexed on
2011/02/05
7:25 UTC
Read the original article
Hit count: 135
java
|netbeans-6.9
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 ?
© Stack Overflow or respective owner