Here you can find the source of is64BitOs()
public static boolean is64BitOs()
//package com.java2s; //License from project: Apache License public class Main { public static boolean is64BitOs() { return System.getProperty("java.vm.name").indexOf("64") >= 0; }/* www . j av a 2 s . c om*/ }