public class OSUtils {
/**
* 判断系统是否是Windows
* @return
*/
public static boolean isWindows() {
return System.getProperties().getProperty("os.name").toUpperCase().indexOf("WINDOWS") != -1;
}
/**
* 判断系统是否为MacOS
* @return
*/
public static boolean isMacOS() {
return System.getProperties().getProperty("os.name").toUpperCase().indexOf("MAC") != -1;
}
public static void main(String[] args) {
System.out.println(isWindows());
System.out.println(isMacOS());
}
}
12-26
468

11-04
2769

03-11