我如何获得平台

如何在Java中获得依赖于平台的换行符? 我无法在任何地方使用"n"


除了line.separator属性之外,如果使用java 1.5或更高版本以及String.format (或其他格式化方法),则可以使用%n

Calendar c = ...;
String s = String.format("Duke's Birthday: %1$tm %1$te,%1$tY%n", c); 
//Note `%n` at end of line                                  ^^

String s2 = String.format("Use %%n as a platform independent newline.%n"); 
//         %% becomes %        ^^
//                                        and `%n` becomes newline   ^^

有关更多详细信息,请参阅Formatter的Java 1.8 API。


您可以使用

System.getProperty("line.separator");

得到行分隔符


Java 7现在有一个System.lineSeparator()方法。

链接地址: http://www.djcxy.com/p/9243.html

上一篇: How do I get a platform

下一篇: Handling file paths cross platform