During installation with an NSIS installer, I need to check which JRE (32bit vs 64bit) is installed on a system. I already know that I can check a system property "sun.arch.data.model", but this is Sun-specific. I'm wondering if there is a standard solution for this.
|
1
|
|
|
|
|
|
On linux, my (java) vm reports java.vm.name=Java HotSpot(TM) 64-Bit Server VM. The javadocs for System declare that System.getProperty will always have a value for this but are silent on sun.arch.data.model. Unfortunately they don't specify what the system property will be so some other JVM might just report java.vm.name=Edgar. BTW, by "installed on the system", I assume you mean "the current running JVM"? |
||
|
|
|
|
The JVM architecture in use can be retrieved using the "os.arch" property:
The "os" part seems to be a bit of a misnomer, or perhaps the original designers did not expect JVMs to be running on architectures they weren't written for. Return values seem to be inconsistent. The NetBeans Installer team are tackling the issue of JVM vs OS architecture. Quote:
Sample properties from different JVMs all running on 64bit Ubuntu 8.0.4: 32bit IBM 1.5:
64bit Sun 1.6:
64bit GNU 1.5:
(The GNU version does not report the "sun.arch.data.model" property; presumably other JVMs don't either.) |
||
|
|
|
|
There might be both 32 bit and 64 bit JVM's available on the system, and plenty of them. If you already have dll's for each supported platform - consider making a small executable which links and run so you can test if the platform supports a given functionality. If the executable links and run, you can install the corresponding shared libraries. |
||
|
|
|
|
The following code checks the machineType field in the java.exe (effectively the equivalent of using uname):
Note that the code has been compacted for brevity... |
||
|
|
|
|
||
|
|
