|
The problem is that the "javac.exe" command isn't in the PATH. That's the reason you're getting that error message - it's not a problem with Java, per se, but a configuration problem with Windows. In some form or fashion, Windows can't find the command "javac". It will search through all the directories in the PATH variable to look for it, but if it can't find it, it will return the error message you are getting.
I'm sorry I can't be more helpful, but that is the immediate cause of your problems - the fact that "javac" isn't in any of the directories listed in the PATH variable. The only other thing I can think of is you might have a User variable that's over-riding the system variable, you can check that (it's located along with the System Variables box I described earlier).
|