I'm reading Effective Java and it uses %n for the newline character everywhere. I have used \n rather successfully for newline in Java programs.

Which is the 'correct' one? What's wrong with '\n' ? Why did Java change this C convention?

link|improve this question

71% accept rate
1  
Just a guess, but: Cross-platform support. Different systems use different characters for newlines, e.g. \n vs. \r\n. C# has Environment.NewLine for the same purpose. – Jordan Dec 10 '09 at 19:27
Java has something in System as well, but %n is easier in a printf. – Paul Tomblin Dec 10 '09 at 19:28
feedback

3 Answers

up vote 19 down vote accepted

From a quick google:

There is also one specifier that doesn't correspond to an argument. It is "%n" which outputs a line break. A "\n" can also be used in some cases, but since "%n" always outputs the correct platform-specific line separator, it is portable across platforms whereas"\n" is not.

source

link|improve this answer
Want to know something trippy? I just got the "Enlightened" badge for this so I came back to look at it but I don't remember answering this at all... Damn my memory sucks, that was less than a year ago. – Bill K Oct 1 '10 at 16:50
feedback

%n is portable accross platforms \n is not.

See the formatting string syntax in the reference documentation:

'n' line separator The result is the platform-specific line separator

link|improve this answer
feedback

While "\n" is the correct newline character for Unix-based systems, other systems may use different characters to represent the end of a line. In particular, Windows system use "\r\n", and early MacOS systems used "\r".

By using %n in your format string, you tell Java to use the value returned by System.getProperty("line.separator"), which is the line separator for the current system.

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.