Few Questions :):
How to identify what JVM is currently installed ? (64 bit / 32 bit)
Do I need to do some considerations while programming for 64 bit JVM target Platform ?
Can my Java code work on 32 bit as well as 64 bit JVM ?
How to run my Java App on 64 bit JVM ?
How to identify what JVM is being used for my Java App ?
Normally a 64 bit jvm will identify itself as such.
32/64 bit Considerations I have seen:
Yes, the same code will run on both JVMs.
System Property “sun.arch.data.model” has the 32/64 flag I think.
There’s some helpful info here: http://www.oracle.com/technetwork/java/hotspotfaq-138619.html