现在的位置: 首页 > 综合 > 正文

关于判断操作系统类型的java代码 How to detect OS in Java – System.getProperty(“os.name”)

2013年01月28日 ⁄ 综合 ⁄ 共 811字 ⁄ 字号 评论关闭

How to detect OS in Java – System.getProperty(“os.name”)

Here is a handy Java class that use System.getProperty(“os.name”) to detect which type of operating system (OS) we are using now.

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);
 
	}
}

抱歉!评论已关闭.