给JEditorPane一个附加(...)方法,如JTextArea

时间:2013-06-23 11:03:21

标签: java swing jeditorpane

如何在jTextarea中使用jExtitorPane作为jTextArea和append方法?

示例:

jTextArea.append(MyString的);

JEditorPane中。?

1 个答案:

答案 0 :(得分:2)

我会看一下Document,特别是Document#insertString方法。

有了这个,你可以做点像......

Document doc = editorPane.getDocument();
doc.insertString(doc.getLength(), "This is the string to insert", null);