I have installed JDK 5, JDK 6 and JDK 7 in my Windows PC. I have added bin folders of all three versions in PATH variable. I can use different versions for different projects with IDEs. But, how to use specific version of javac in cmd or PowerShell?
|
cmd will pick the first JDK in your path. You only want one there. To use different ones you can use path variables like JAVA_HOME and change it when you need to. Or do it like Bhavik Ambani specified. You will have to restart the cmd after you change your path for it to pick it up. |
|||
|
|
|
For that you should write the explicit path of the javac location. E.g. (for PowerShell)
E.g. (for cmd)
|
||||
|
|
|
You can create links to different versions of If you're calling |
|||||
|