How can I tell if the JVM my application runs in is 32 bit or 64-bit? Specifically, what function or preference do I access to detect this within the program?
|
|
Sun has a Java System property to determine the bitness of the JVM: 32 or 64:
You can use
to determine if its 32/64 from the program. From the sun.docs:
The only good reason is if your java code is dependent upon native libraries and your code needs to determine which version (32 or 64bit) to load on startup. |
|||||||||||||||||||
|
|
You can try on the command line:
If it's not a 64-bit version, you'll get a message that looks like:
Consult the help options of the JVM for more info |
|||||||||||||||||||||
|
|
Update Again: I installed 32-bit JVM and retried it again, looks like the following does tell you JVM bitness, not OS arch:
This was tested against both SUN and IBM JVM (32 and 64-bit). Clearly, the system property is not just the operating system arch. |
|||||||||||||||||||
|
|
on WindowsNT you just type
and if a 64bit version is running, you'll get a message like
|
|||
|
|
|
Complementary info: On a running process you may use (at least with some recent Sun JDK5/6 versions):
where 14680 is PID of jvm running the application. "os.arch" works too. Also other scenarios are supported:
However consider also this note: "NOTE - This utility is unsupported and may or may not be available in future versions of the JDK. In Windows Systems where dbgent.dll is not present, 'Debugging Tools for Windows' needs to be installed to have these tools working. Also the PATH environment variable should contain the location of jvm.dll used by the target process or the location from which the Crash Dump file was produced." |
|||
|
|
|
On Linux, you can get ELF header information by using either of the following two commands:
o/p: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.4.0, dynamically linked (uses shared libs), for GNU/Linux 2.4.0, not stripped or
o/p: Class: ELF64 |
|||
|
|
