We have a couple of applications running on Java 5 and would like now to bring in an application based on Java 6. Can both java versions live together under Windows? Is there any control panel to set the appropriate Java version for different applications?

link|improve this question

50% accept rate
feedback

5 Answers

up vote 8 down vote accepted

Of course you can use multiple versions of Java under Windows. And different applications can use different Java versions. How is your application started? Usually you will have a batch file where there is something like

java ...

This will search the Java executable using the PATH variable. So if Java 5 is first on the PATH, you will have problems running a Java 6 application. You should then modify the batch file to use a certain Java version e.g. by defining a environment variable JAVA6HOME with the value C:\java\java6 (if Java 6 is installed in this directory) and change the batch file calling

%JAVA6HOME%\bin\java ...
link|improve this answer
1  
On Windows, to stop the Java installer replacing your existing (first installed) Java install, you must pass it the STATIC=1 argument i.e. run from command line "jre-6u24-windows-i586-s.exe /STATIC=1" – Tom Chiverton Mar 16 '11 at 15:05
When I do "jdk-6u27-windows-x64.exe /STATIC=1" on Windows 7 64, it does not install, it just brings up a pop-up window showing the usage for msiexec. – yetimoner Oct 12 '11 at 0:01
feedback

It is absolutely possible to install side-by-side several JRE/JDK versions. Moreover, you don't have to do anything special for that to happen, as Sun is creating a different folder for each (under Program Files).

There is no control panel to check which JRE works for each application. Basically, the JRE that will work would be the first in your PATH environment variable. You can change that, or the JAVA_HOME variable, or create specific cmd/bat files to launch the applications you desire, each with a different JRE in path.

link|improve this answer
feedback

It should be possible changing setting the JAVA_HOME environment variable differently for specific applications.

When starting from the command line or from a batch script you can use set JAVA_HOME=C:\...\j2dskXXX to change the JAVA_HOME environment.

It is possible that you also need to change the PATH environment variable to use the correct java binary. To do this you can use set PATH=%JAVA_HOME%\bin;%PATH%.

link|improve this answer
feedback

Invoking Java with "java -version:1.5", etc. should run with the correct version of Java. (Obviously replace 1.5 with the version you want.)

If Java is properly installed on Windows there are paths to the vm for each version stored in the registry which it uses so you don't need to mess about with environment versions on Windows.

link|improve this answer
I believe this only works with "Public" JRE's. Excellent on client machines, a bit of a pain for developers who don't install the public JRE. Much better than a batch file. – James Schek Nov 7 '08 at 20:38
feedback

If you use Java Web Start (you can start applications from any URL, even the local file system) it will take care of finding the right version for your application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.