判断程序运行环境是window还是linux
程序员文章站
2022-06-14 23:04:20
...
public static boolean isOSLinux() {
Properties prop = System.getProperties();
String os = prop.getProperty("os.name");
if (os != null && os.toLowerCase().indexOf("linux") > -1) {
return true;
} else {
return false;
}
}
上一篇: ubuntu 更换更新源
下一篇: 监听蓝牙连接的状态