This question already has an answer here:
How can I identity whether the installed version of Java is 64 bit or 32 bit ?
|
This question already has an answer here: How can I identity whether the installed version of Java is |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You can get the
this will tell you the architecture of the OS, so not exactly the one of the VM. Sun's JREs have the following properties (values from my machine) that may be useful:
But have in mind that these will not work on VMs from other vendors. So you may want to find such properties of other VMs as well, so that you are not vendor-dependent. |
|||||||||||
|
|
Enter java -version on the command line. If it's 64-bits it will say so, otherwise it's 32-bits. E.g. 64 bits Oracle / Mac OS X
32 bits Oracle / Mac OS X (client)
32 bits Oracle / Mac OS X (server)
64 bits OpenJDK Ubuntu
32 bits Soylatte Mac OS X
32 bits OpenJDK Mac OS X
64 bits IBM Linux
|
|||||||||||
|
|
I have both 32-bit and 64-bit versions of Java installed, but java -version only says 64-bit server (mixed mode). So this won't work if you have multiple (and previous) versions of Java installed. There's another way to check I just realized: for Windows, if you have the 32-bit version installed then it will be in c:\Program Files (x86)\java\jre7 (or whatever the version of Java is installed). I see I also have a jre6 folder, which is a bit disconcerting because I thought I had already uninstalled it. And for the 64-bit version, it will be in c:\Program Files\java (where all the 64-bit applications are installed). |
||||
|
|