Pages

2010年1月23日 星期六

Java判斷作業系統與檔案路徑

如何在java程式中判斷幕前作業系統是何種作業系統
以下位範例程式:
public class OSValidator {

    public static void main(String[] args) {
        if (isWindows()) {
            System.out.println("This is Windows");
        } else if (isMac()) {
            System.out.println("This is Mac");
        } else if (isUnix()) {
            System.out.println("This is Unix or Linux");
        } else {
            System.out.println("Your OS is not support!!");
        }
    }

    public static boolean isWindows() {

        String os = System.getProperty("os.name").toLowerCase();
//windows
        return (os.indexOf("win") >= 0);

    }

    public static boolean isMac() {

        String os = System.getProperty("os.name").toLowerCase();
//Mac
        return (os.indexOf("mac") >= 0);

    }

    public static boolean isUnix() {

        String os = System.getProperty("os.name").toLowerCase();
//linux or unix
        return (os.indexOf("nix") >= 0 || os.indexOf("nux") >= 0);

    }
}
System.getProperty("os.name") 在java程式中判斷此作業系統是Linux或Windows
在Ubuntu的作業系統中,測試取的的字串為Linux,vista則為Windows。


System.getProperty("file.separator")  => 使用時機是在需要用到路徑的時候,Windows使用 "\\",或Linux使用 "/"
來建立檔案或資料夾路徑。


0 意見: