我有:
HTMLDocument document = new HTMLDocument();
JTextPane htmlEditorPane = new JTextPane(document)
htmlEditorPane.setContentType("text/html");
然后我在句子中间选择一些文本并调用(包含在相应的ActionListeners中):
htmlEditorPane.copy();
htmlEditorPane.paste();
无论出于何种原因,每当我这样做时,复制和粘贴的文本都会包含在<p>
标记中。如何保留所有格式,但似乎添加了<p>
标记?