如何从客户端程序获取操作系统名称?

时间:2019-07-05 05:46:12

标签: java swt getproperty

程序的某些部分受操作系统类型的影响。 所以我尝试按操作系统名称分支如下。 当我在本地运行它时,它可以工作。但是将其上传到服务器后,我将其作为客户端程序运行,看来它无法获得操作系统名称。 请让我知道如何从客户端程序获取操作系统名称。 谢谢。

public void getOSName() {   
   String osName = System.getProperty("os.name")
   if(!osName.trim().toUpperCase().equals("WINDOWS 10")){
   run();        
   }else{
   }
}

1 个答案:

答案 0 :(得分:3)

在util类下签出以进行OS验证。

  

使用系统属性:由于存在issue,这种方法可能会失败。请参阅Java's “os.name” for Windows 10?

/**
 * The Class OSValidator.
 */
public final class OSValidator {

    /** The Constant OS. */
    public static final String OS = System.getProperty("os.name").toLowerCase();

    /**
     * Checks if is windows 7.
     *
     * @return true, if is windows 7
     */
    public static final boolean isWindows7() {
        return (OS.indexOf("windows 7") >= 0);
    }

    /**
     * Checks if is windows 10.
     *
     * @return true, if is windows 10
     */
    public static final boolean isWindows10() {
        return (OS.indexOf("windows 10") >= 0);
    }

    /**
     * Checks if is mac.
     *
     * @return true, if is mac
     */
    public static final boolean isMac() {
        return (OS.indexOf("mac") >= 0);
    }
}
  

使用SystemUtils – Apache Commons Lang

public String getOperatingSystemSystemUtils() {
    String os = SystemUtils.OS_NAME;
    // System.out.println("Using SystemUtils: " + os);
    return os;
}