java中System.getProperty("line.separator", "n");_兴国First的博客-CSDN博客
System.getProperty()_基本使用 - 照旧 - 博客园
// 行分隔符
final static public String LS = System.getProperty("line.separator", "/n");
// 文件分割符
final static public String FS = System.getProperty("file.separator", "//");


