Is there a Newline constant defined in Java like Environment.Newline in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T07:38:02Zhttp://stackoverflow.com/feeds/question/247059http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247059/is-there-a-newline-constant-defined-in-java-like-environment-newline-in-c6Is there a Newline constant defined in Java like Environment.Newline in C#?orj2008-10-29T14:43:35Z2008-10-29T17:01:47Z
<p>In C# there is the static property <a href="http://msdn.microsoft.com/en-us/library/system.environment.newline.aspx" rel="nofollow">Environment.Newline</a> that changed depending on the running platform.</p>
<p>Is there anything similar in Java?</p>
http://stackoverflow.com/questions/247059/is-there-a-newline-constant-defined-in-java-like-environment-newline-in-c/247069#24706913Answer by Tom Lokhorst for Is there a Newline constant defined in Java like Environment.Newline in C#?Tom Lokhorst2008-10-29T14:45:32Z2008-10-29T14:45:32Z<pre><code>System.getProperty("line.separator");
</code></pre>
<p>See <a href="http://java.sun.com/docs/books/tutorial/essential/environment/sysprop.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/essential/environment/sysprop.html</a> for other properties.</p>
http://stackoverflow.com/questions/247059/is-there-a-newline-constant-defined-in-java-like-environment-newline-in-c/247536#2475361Answer by Alex B for Is there a Newline constant defined in Java like Environment.Newline in C#?Alex B2008-10-29T16:47:01Z2008-10-29T16:47:01Z<p>See <a href="http://stackoverflow.com/questions/207947/java-how-do-i-get-a-platform-independent-new-line-character">Java: How do I get a platform independent new line character?</a></p>
http://stackoverflow.com/questions/247059/is-there-a-newline-constant-defined-in-java-like-environment-newline-in-c/247597#2475977Answer by Alan Moore for Is there a Newline constant defined in Java like Environment.Newline in C#?Alan Moore2008-10-29T17:01:48Z2008-10-29T17:01:48Z<p>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").</p>
<p>When you're <em>writing</em> 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.</p>