java判断当前运行环境是什么系统:linux、windows、mac

    //获取当前系统名称
    public static String getPropertyOsName() {
        Properties props = System.getProperties(); //获得系统属性集
        return props.getProperty("os.name");
    }

 

你可能感兴趣的:(程序开发)