How do I get a platform independent newline in java? I can't use "\n" everywhere.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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
See the Java 1.5 API for Formatter for more details. |
|||||||||||
|
|
Java 7 now has a |
|||||
|
|
If you're trying to write a newline to a file, you could simply use BufferedWriter's newLine() method. |
|||
|
|
|
The commons-lang library has a constant field available called SystemUtils.LINE_SEPARATOR |
|||
|
|
|
use the method |
||||
|
|
|
This is also possible: |
|||
|
Avoid appending strings using String + String etc, use StringBuffer instead.
|
|||||||||||||
|
