All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.hugh.util.system.OsUtils Maven / Gradle / Ivy

The newest version!
package com.github.hugh.util.system;

/**
 * 系统工具
 *
 * @author hugh
 * @since 1.1.0
 */
public class OsUtils {
    private OsUtils() {

    }

    /**
     * 校验当前系统是否为windows系统
     *
     * @return boolean {@code true} windows
     * @since 1.1.0
     */
    public static boolean isWindows() {
        String os = System.getProperty("os.name");
        return os.toLowerCase().startsWith("win");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy