一.检测当前操作系统的类型
String osName = System.getProperty("os.name");//获取操作系统类型
String command = "";
if(osName.contains("Linux")){
command = "ping -c 100 -i 0"+ip;
}else if{
command = "ping -n 5 -w 1000"+ip;
}
Properties props=System.getProperties(); //获得系统属性集
String osName = props.getProperty("os.name"); //操作系统名称
String osArch = props.getProperty("os.arch"); //操作系统构架
String osVersion = props.getProperty("os.version"); //操作系统版本