java newline character insertion - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T09:52:42Zhttp://stackoverflow.com/feeds/question/621132http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/621132/java-newline-character-insertion0java newline character insertionharsha2009-03-07T01:48:40Z2009-05-26T12:00:36Z
<p>how can i insert a newline character in a java applet program if i am using "label" instead of sys.out.println??</p>
<p>thanks in advance</p>
http://stackoverflow.com/questions/621132/java-newline-character-insertion/621134#6211341Answer by Ben Alpert for java newline character insertionBen Alpert2009-03-07T01:49:43Z2009-03-07T01:49:43Z<p>Put a <code>\n</code> in the string.</p>
<p>Like this:</p>
<pre><code>String twoLineString = "first line\nsecond line";
</code></pre>
http://stackoverflow.com/questions/621132/java-newline-character-insertion/621135#6211353Answer by Oscar Reyes for java newline character insertionOscar Reyes2009-03-07T01:51:21Z2009-03-07T01:51:21Z<p>JLabel? </p>
<p>If you're using JLabel, you can use basic HTML in it</p>
<p>Try the following: </p>
<pre><code><html>Text<br>more text</html>
</code></pre>
<p>See this <a href="http://stackoverflow.com/questions/461112/panel-with-line-wrapping-and-line-breaking-in-java-swing/462836#462836">other answer</a></p>
<p>And upvote it too ;) </p>
http://stackoverflow.com/questions/621132/java-newline-character-insertion/910336#9103361Answer by David Billskog for java newline character insertionDavid Billskog2009-05-26T12:00:36Z2009-05-26T12:00:36Z<p>I am not sure what you are asking for but you can use <code>System.getProperty("line.separator");</code> to get the line separator for your operating system.</p>