В дополнение к свойству 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 ^^
Подробнее см. Java 1.8 API для Formatter .