NewLine in JEditorPane
I was trying 开发者_运维技巧to set the text given below but for some reason JEditorPane
is not recognizing
\n
and printing everything in a single line.
this.jEditorPane2.setText("Hello how is the weather in \n California");
Is there any way to get a new line space?
JEditorPane
should support HTML, try using <br>
instead of \n
.
精彩评论