java newline character insertion - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T09:52:42Z http://stackoverflow.com/feeds/question/621132 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/621132/java-newline-character-insertion 0 java newline character insertion harsha 2009-03-07T01:48:40Z 2009-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#621134 1 Answer by Ben Alpert for java newline character insertion Ben Alpert 2009-03-07T01:49:43Z 2009-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#621135 3 Answer by Oscar Reyes for java newline character insertion Oscar Reyes 2009-03-07T01:51:21Z 2009-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>&lt;html&gt;Text&lt;br&gt;more text&lt;/html&gt; </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#910336 1 Answer by David Billskog for java newline character insertion David Billskog 2009-05-26T12:00:36Z 2009-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>