In C# there is the static property Environment.Newline that changed depending on the running platform.
Is there anything similar in Java?
|
|
In C# there is the static property Environment.Newline that changed depending on the running platform. Is there anything similar in Java?
|
||
|
|
|
See http://java.sun.com/docs/books/tutorial/essential/environment/sysprop.html for other properties. |
||
|
|
|
|
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. |
||
|
|