Hello, What can I do when I keep receiving an error :'javac' is not recognized as an internal or external command, operable program or batch file , when wanted to compile my jar or . class file?
Thanks
|
1
|
Hello, What can I do when I keep receiving an error :'javac' is not recognized as an internal or external command, operable program or batch file , when wanted to compile my jar or . class file? Thanks
|
||
|
|
|
|
Step 4 (Update the PATH variable) of the JDK installation instructions explains what you should do to make it so that you can just type |
||
|
|
|
|
|
||
|
|
|
|
The error that you are seeing is generated by Windows, and isn't specific to Java. That error means that you typed a command and Windows could not find the command by that name. The easiest way or rectifying the situation is to ensure that Java is properly installed on your system's First, ensure that you have a JDK installed (and not just a JRE). Your next best bet is to add an environment variable called Next, modify your |
||
|
|
|
|
It means that it is not in your path. You have the following options: 1) Change to the directory where javac lives before calling it. 2) Use the full path to javac when making the call, e.g. C:\java\jdk1.6.0_12\bin\javac ... 3) Add the javac directory to the PATH environment variable |
||
|
|
|
|
You have to install JDK (which includes javac compiler) and ensure that it's in the path. See http://java.sun.com/javase/downloads/index.jsp |
||
|
|
|
|
This just means that javac isn't in your PATH variable. On Windows, you just have to add the folder that contains javac.exe to the PATH environment variable (Win+Pause/Break). On Linux/Mac/Unix, just append that directory to $PATH in .bashrc or similar. |
||
|
|
|
|
Make sure %JAVA_HOME%/bin is on your %PATH% (or $JAVA_HOME on the $PATH in *nix). |
||
|
|