List of utility methods to do JVM is 32 Bit
boolean | is32bitJVM() isbit JVM String architecture = System.getProperty("sun.arch.data.model"); return architecture != null && architecture.equals("32"); |
boolean | is32BitJvm() Uses the non-portable system property sun.arch.data.model to help determine if we are running on a 32-bit JVM. Integer bits = Integer.getInteger("sun.arch.data.model"); return bits != null && bits == 32; |
boolean | is32bitJVM() isbit JVM String os = System.getProperty("sun.arch.data.model"); return os != null && os.equals("32"); |