查看电脑已安装的Jdk的位数
时间:2014-06-02 12:30:19
收藏:0
阅读:155
查看自己电脑已安装的Jdk的位数的方法:
public class ShowJdkBit {
public static void main(String[] args) {
String arch = System.getProperty("sun.arch.data.model");
System.out.println(arch + "-bit");
}
}
评论(0)