Here\'s the address on my drive:
C:\\Program Files\\Java\\jdk1.6.0_18\\bin
How would I go about setting the path variable so I c
Typing the SET PATH command into the command shell every time you fire it up could get old for you pretty fast. Three alternatives:
.CMD) file. Then you can just put the SET PATH into that file before your javac execution. Or you could do without the SET PATH if you simply code the explicit path to javac.exePATH in the "environment variables" configuration of your system.PATH first, which brings us back to (1) and (2).