How do I get a platform independent newline in java? I can't use "\n" everywhere.
|
feedback
|
|
You can use
to get the line separator | |||
|
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
See the Java 1.5 API for Formatter for more details. | |||||||
feedback
|
|
If you're trying to write a newline to a file, you could simply use BufferedWriter's newLine() method. | |||
|
feedback
|
| ||||
|
feedback
|
|
The commons-lang library has a constant field available called SystemUtils.LINE_SEPARATOR | |||
|
feedback
|
|
use the method | ||||
|
feedback
|