Files
2020-01-08 08:39:07 -07:00

20 lines
445 B
Java

package org.jd.gui.util.sys;
/**
* Created by jianhua.fengjh on 27/11/2015.
*/
public final class SystemUtils {
static boolean isLinux() {
return System.getProperty("os.name").startsWith("Linux");
}
public static boolean isMacOS() {
return System.getProperty("os.name").startsWith("Mac");
}
public static boolean isWindows() {
return System.getProperty("os.name").startsWith("Windows");
}
}