Java 判断 OS 类型
- 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);
- }
- }
我在IBM工作,可以为大家内部推荐IBM各种职位
IBM全球职位尽在以下链接(请在浏览器中打开,QQ/微信 会阻止):
http://ibmreferrals.com/
很乐意为感兴趣的小伙伴分享:我的面试经验^_^
如需咨询,请邮件发送以下邮箱,有问必回
1026096425@qq.com