java 判断windows或者linux系统
String os = System.getProperty("os.name").toLowerCase();
if (os.contains("windows")) {
// Windows系统
} else if (os.contains("linux")) {
// Linux系统
} else {
// 其他操作系统
}
End of the universe is coding.
java 判断windows或者linux系统
String os = System.getProperty("os.name").toLowerCase();
if (os.contains("windows")) {
// Windows系统
} else if (os.contains("linux")) {
// Linux系统
} else {
// 其他操作系统
}