我拼命地尝试在 HTML 模式下的 JTextPane 中实现自定义的复制/粘贴。大部分工作正常,我使用 EditorKit.write() 获取 html 内容,然后使用 editorKit.read() 粘贴它。完美世界。
但是,当我有 :<p> test </p>
在我的编辑器中并尝试复制“es”来获取
<p> tesest </p>
时,我会获取
<p>tes</p>
<p>es</p>
<p>t</p>
知道了这一点,我试图找出一种方法来粘贴“内联”应该是内联的部分,并阻止在复制过程中被阻止的部分。通常,
如果我有 :
<p>mon beau sapin</p>
<p>roi des forêts</p>
<p>que j'aime ta verdure</p>
如果我复制:
beau sapin</p>
<p>roi des forêts</p>
<p>que
并将其粘贴在“mon”之后,我希望:
<p>mon beau sapin</p>
<p>roi des forêts</p>
<p>que beau sapin</p>
<p>roi des forêts</p>
<p>que j'aime ta verdure</p>
而我得到的是:
<p>mon</p>
<p>beau sapin</p>
<p>roi des forêts</p>
<p>que</p>
<p>beau sapin</p>
<p>roi des forêts</p>
<p>que j'aime ta verdure</p>
我尝试了各种方法,比如删除<p></p>
第一行和最后一行(EditorKit.read 自行添加回来),使用 editorKit.insertHTML(但我应该放什么样的标签?),逐行插入(大部分时间,我得到一个p
里面另一个p
)等。
但真正的问题是不可能在 htmlDocument 中写出你想要的东西。如何sapin</p> <p>roi
在指定位置书写?EditorKit.read ? 它将添加<p>sapin</p> <p>roi</p>
Editorkit.insertHTML 吗?我需要精确的包装标签...
我向您展示我的最后一次尝试:
private static void insertHTMLContent(JMathTextPane jtp, String html, int offset) {
Document doc = Jsoup.parse(html);
Elements elts = doc.body().children();
//unwrap the last and first element
if(elts.size()>2) { elts.last().unwrap(); }
if(elts.size()>=1) { elts.first().unwrap(); }
//We add a fake DIV element and remove it just at the next line
editorKit.insertHTML(jtp.htmlDoc, offset, "<div id='copie'>"+doc.body().html()+"</div>", 0, 0, HTML.Tag.DIV);
jtp.getHTMLdoc().setOuterHTML(jtp.getHTMLdoc().getElement("copie"),doc.body().html());
}
我无法向您展示结果:EditorKit.write 尝试自行修复 html。但是 HTMLDocument 完全是一团糟。
供您尝试:
public class Test {
private static JTextPane editor = new Editor();
private static JMenuBar menu = new Menu();
private static String clipboard = "";
private static Action copy = new Copy();
private static Action paste = new Paste();
public static void main(String[] args) {
JFrame f = new JFrame();
f.setContentPane(editor);
f.setJMenuBar(menu);
f.setSize(600, 400);
f.setVisible(true);
}
public static class Editor extends JTextPane {
public Editor() {
this.setDocument(new HTMLDocument());
this.setEditorKit(new HTMLEditorKit());
}
}
public static class Menu extends JMenuBar {
public Menu() {
add(new JButton(copy));
add(new JButton(paste));
getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_C, InputEvent.CTRL_DOWN_MASK), "copy");
getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_V, InputEvent.CTRL_DOWN_MASK), "paste");
getActionMap().put("copy", copy);
getActionMap().put("paste", paste);
}
}
public static class Copy extends AbstractAction {
public Copy() {super("copy");}
@Override
public void actionPerformed(ActionEvent e) {
StringWriter w = new StringWriter();
try {
editor.getEditorKit().write(w, editor.getDocument(), editor.getCaretPosition(), editor.getSelectedText().length());
} catch (Exception ex) {Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);}
clipboard = w.toString();
}
}
public static class Paste extends AbstractAction {
public Paste() {super("paste");}
@Override
public void actionPerformed(ActionEvent e) {
try {
editor.getEditorKit().read(new StringReader(clipboard), editor.getDocument(), editor.getCaretPosition());
} catch (Exception ex) {Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);}
}
}
}
对不起,我长了。我接受任何帮助。