Java JVM is 64 Bit is64Bit()

Here you can find the source of is64Bit()

Description

is Bit

License

Open Source License

Declaration

private static boolean is64Bit() 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    private static boolean is64Bit() {
        return System.getProperty("os.arch").indexOf("64") != -1
                || System.getProperty("sun.arch.data.model").indexOf("64") != -1;
    }//from   w w  w.  j  a v  a 2s.c  o  m
}

Related

  1. is64Bit()
  2. is64Bit()
  3. is64Bit()
  4. is64Bit()
  5. is64Bit()
  6. is64Bit()
  7. is64Bit()