Java判断操作系统是Linux还是Windows_编程学问网
判断操作系统:
//String os=System.getProperties().getProperty("os.name");
String os=System.getProperty("os.name"); 判断分隔符
//String fileSeparator=System.getProperties().getProperty("file.separator");
String fileSeparator=System.getProperty("file.separator");
windows系统的目录是以\来作为分隔符:D:\xxxx
而linux系统的目录则正好与windows相反:D:/xxxx
String path = "D:"+File.separator+"xxxx"
在windows中读取的就是D:\xxxx,
在linux中读取的就是D:/xxxx.