vote up 6 vote down star

In C# there is the static property Environment.Newline that changed depending on the running platform.

Is there anything similar in Java?

flag

60% accept rate
Techniczly you should ask: How does Java represent the newLine property that c# implemented as Environment.Newline when it got created – Peter Oct 29 '08 at 14:53

3 Answers

vote up 13 vote down check
System.getProperty("line.separator");

See http://java.sun.com/docs/books/tutorial/essential/environment/sysprop.html for other properties.

link|flag
vote up 7 vote down

Be aware that this property isn't as useful as many people think it is. Just because your app is running on a Windows machine, for example, doesn't mean the file will be using Windows-style line separators. Most web pages, for example, contain a mixture of "\n" and "\r\n". When you're reading text as a series of logical lines, you should always look for all three of the major line-separator styles: Windows ("\r\n"), Unix/Linux/OSX ("\n") and pre-OSX Mac ("\r").

When you're writing text, you should be more concerned with how the file will be used than what platform you're running on. For example, if you expect people to read the file in Windows Notepad, you should use "\r\n" because, unlike virtually every other piece of software in the world, it only recognizes the one kind of separator.

link|flag
vote up 1 vote down

See Java: How do I get a platform independent new line character?

link|flag

Your Answer

Get an OpenID
or

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