不同的系统平台有不同的换行符,如Linux是 \n , Windows是 \r\n 。

Java可以根据系统平台得到换行符,代码如下所示:

String lineSeparator = System.getProperty("line.separator", "\n");
Logo

更多推荐