JVM - 64 or 32 bit mode?

Hi,Is there any way to confirm whether my JVM has been started in 64 or 32 bit mode (without looking to the start script)?warm regards.
[156 byte] By [Amit.Pola] at [2007-11-26 19:09:30]
# 1
I don't think so. You can get the OS architecture with:String osArc = System.getProperty("os.arch");but that says nothing about the JVM (on 64 bit machines you can emulate a 32 bit JVM, of course).
prometheuzza at 2007-7-9 21:04:25 > top of Java-index,Java Essentials,Java Programming...
# 2
"ps aux | grep java" under linux to see java process and the option use by the jvm...
suparenoa at 2007-7-9 21:04:25 > top of Java-index,Java Essentials,Java Programming...