Why is my Java path not recognized?

Why is javac.exe not recognized? I must have the correct path in my environment variable. Does anyone have any clues? I already restarted the computer after editing the environment variables, so it should be updated. Thank you enter image description hereenter image description hereenter image description here

+3
source share
2 answers

Try to lose the spaces in the Path setting, that is, the spaces "; C: ...". I used to have problems with this space placement in the tracks.

+6
source

I am looking for a lot of answers that suggest me type cmd:

set path = "%path%;c:program files\java\jdk1.7.0\bin"

but this is wrong!

the correct solution is that you leave "set" and just type

path = "%path%;c:program files\java\jdk1.7.0\bin"

P/s: , "jdk1.7.0" java

0

All Articles