vote up 5 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
Techniczly you should ask: How does Java represent the newLine property that c# implemented as Environment.Newline when it got created – Peter Oct 29 at 14:53
add comment

3 Answers

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

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

link|flag
add comment
vote up 5 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
add comment

Your Answer

Get an OpenID
or

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