vote up 8 vote down star

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

flag

4 Answers

vote up 30 vote down check

You can use

System.getProperty("line.separator");

to get the line separator

link|flag
vote up 8 vote down

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|flag
vote up 2 vote down

Use the System property line.separator.

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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