如何在Java中获得平台相关的换行符?我不能"\n"到处使用。
"\n"
除了line.separator属性,如果你使用的是Java 1.5或更高版本和的String.format(或其他格式化方法),可以使用%n在
%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 ^^
你可以使用
System.getProperty("line.separator");
得到行分隔符