Reputation: 4477
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!
Upvotes: 3
Views: 6579
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
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