How can I tell if the JVM in which my application runs is 32 bit or 64-bit? Specifically, what functions or properties I can used to detect this within the program?
If you're using JNA, you can do thisPlatform.is64Bit().
Platform.is64Bit()