How do I get a platform independent newline in java? I can't use "\n" everywhere.

link|improve this question

feedback

6 Answers

up vote 98 down vote accepted

You can use

System.getProperty("line.separator");

to get the line separator

link|improve this answer
feedback

In addition to the line.separator property, if you are using java 1.5 or later and the String.format (or other formatting methods) you can use %n as in

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     ^^

See the Java 1.5 API for Formatter for more details.

link|improve this answer
Thank you! I'm sure System.getProperty("line.separator"); has its uses, but I get tired of seeing: "Line 1" + System.getProperty("line.separator") + "Line 2" – Buttons840 Aug 26 '11 at 22:02
3  
Oh my, "Line 1" + System.getProperty("line.separator") + "Line 2" is indeed one of the ugliest things I've ever seen. Just declaring a constant elsewhere would be less painful. – abahgat Dec 16 '11 at 10:56
feedback

If you're trying to write a newline to a file, you could simply use BufferedWriter's newLine() method.

link|improve this answer
feedback
String newLine = String.format("%n");

String text = "First line" + newLine + "Second line";
link|improve this answer
feedback

The commons-lang library has a constant field available called SystemUtils.LINE_SEPARATOR

link|improve this answer
feedback

use the method nextLine() of class BufferedWriters which provides platform independent way to write the next line in file

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.