在JEditorPane中包装和换行

时间:2016-07-13 12:27:02

标签: java newline word-wrap jeditorpane

我有一个添加到对话框的JEditorPane。使用编辑器窗格而不是JTextArea来处理包装和样式。我添加了一些包含一些换行符的文本。我希望它看起来像这样:

Line 1 should be like this
Line 2 is too long for a single line and so needs to
    wrap to the next line
Line 3 should be like this

但是会发生什么:

Line 1 should be like this
Line 2 is too long for a single line and so needs to
Line 3 should be like this wrap to the next line

第2行与第3行重叠。我无法在此处显示,但这些线条在字面上会相互重叠。

带有换行符的文本(即:“\ n”)从方法返回。然后我使用该字符串编辑editorPane.setText()并调用dialog.display()。

有什么想法吗?提前谢谢。

0 个答案:

没有答案