Private JRE installation on Windows

Hi guys,

please help me with following ...

We developed a java application running under JRE 1.5 and later. As we cannot force all users to install this JRE version and do not want to mix up the users' current java settings, we would like to automatically copy only the necessary JRE files to the target PC (Windows OS) and use that hidden "private" java installation to run our application.

What files/directories are necessary?

Thanks for help

Karel

[490 byte] By [marsaleka] at [2007-11-27 9:52:36]
# 1
normally you have just to use rt.jar (not sure)
java_2006a at 2007-7-13 0:21:41 > top of Java-index,Desktop,Runtime Environment...
# 2

There are 2 considerations - what does Sun's usage license require, and what does your application require.

Almost certainly the minimum JRE installation that the license requires (see the JRE documentation) will be sufficient for your app to run. However, if not, then you could run the app with the java command options

-verbose:class

Display information about each class loaded.

-verbose:jni

Report information about use of native methods and other Java Native Interface activity.

and see what else is required.

ChuckBinga at 2007-7-13 0:21:41 > top of Java-index,Desktop,Runtime Environment...