org.k3a.utils.SysHelper Maven / Gradle / Ivy
package org.k3a.utils;
/**
* Created by k3a
* on 19-1-30 上午9:36
*/
public class SysHelper {
public static final String osName = System.getProperty("os.name");
private static boolean isMacOs = osName.equalsIgnoreCase("Mac OS X");
public static boolean isMacOs() {
return isMacOs;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy