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

com.github.shoothzj.javatool.util.OsUtil Maven / Gradle / Ivy

There is a newer version: 3.1.15
Show newest version
package com.github.shoothzj.javatool.util;

import com.github.shoothzj.javatool.module.OperationSystem;

/**
 * @author hezhangjian
 */
public class OsUtil {
    private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(OsUtil.class);

    public static OperationSystem getOs() {
        String osName = EnvUtil.getOsName();
        if (osName.startsWith("Mac")) {
            return OperationSystem.MAC;
        } else if (osName.startsWith("Windows")) {
            return OperationSystem.WINDOWS;
        } else if (osName.startsWith("Linux")) {
            return OperationSystem.LINUX;
        }
        return OperationSystem.UNKNOWN;
    }

    public static String getDocumentPath() {
        OperationSystem operationSystem = getOs();
        if (operationSystem.equals(OperationSystem.MAC) || operationSystem.equals(OperationSystem.WINDOWS)) {
            return EnvUtil.getUserHome() + "/Documents";
        } else {
            return EnvUtil.getUserHome() + "/Documents";
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy