Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
installed jvm is 64 bit or 32 bit

How do I check which bit version of java is installed on my linux machine? When I type:

java -version

I get:

java version "1.6.0_16" Java(TM) SE Runtime Environment (build 1.6.0_16-b01) Java HotSpot(TM) Server VM (build 14.2-b01, mixed mode)

but is that 32bit or 64bit?

share|improve this question
What do you need to know it for? Native code? – Thorbjørn Ravn Andersen Jan 8 '11 at 23:16
IIRC, 64-bit JVMs always explicitly mention the fact in their version output. – Rob Jan 8 '11 at 23:24

marked as duplicate by Bozho, GregS, Yanick Rochon, Ben Voigt, Bill the Lizard Jan 9 '11 at 15:43

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.

4 Answers

Run java with -d64 or -d32 specified, it will give you an error message if it doesn't support 64-bit or 32-bit respectively. Your JVM may support both.

share|improve this answer

Why don't you examine System.getProperty("os.arch") value in your code?

share|improve this answer

Go to this JVM online test and run it.

Then check the architecture displayed: x86_64 means you have the 64bit version installed, otherwise it's 32bit.

share|improve this answer

Works for every binary, not only java:

file - < $(which java) # heavyly bashic

cat `which java` | file - # universal
share|improve this answer
This doesn't tell you if the JVM in question actually supports loading 64bit bytecodes. – sjr Jan 9 '11 at 4:22
1  
There is no 32 or 64bits bytecode, it is the same. float and int are 32bits, double and long are 64bits on both architecture. – shellholic Jan 9 '11 at 11:19

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