O_O
O_O

Reputation: 4477

Why is my java path not being recognized?

Why is the javac.exe not being recognized? I should have the right path in my environment variable. Anyone have any clues? I've already restarted the computer after editing my environment variables, so it should be updated. Thanks! enter image description hereenter image description hereenter image description here

Upvotes: 3

Views: 6579

Answers (2)

eta99
eta99

Reputation: 15

I'm searched many answers that suggest me to type in cmd:

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

but this is WRONG!

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

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

P/s: of course you have to replace "jdk1.7.0" folder by your current java version folder

Upvotes: 0

Timo Geusch
Timo Geusch

Reputation: 24351

Try losing the spaces in the Path setting - ie the "; C:..." spaces. I've had problems with this placement of a space in paths before.

Upvotes: 6

Related Questions