检测 Java 是否运行在64bit 的JVM上的方法详解编程语言

   public static boolean is64BitVM() {   
      String bits = System.getProperty("sun.arch.data.model");   
      if (bits != null) {   
         return bits.equals("64");   
      } else {   
         // probably sun.arch.data.model isn't available   
         // maybe not a Sun JVM?   
         // try with the vm.name property   
         return System.getProperty("java.vm.name").contains("64");   
      }    
    }  

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/11023.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论