1

我拼命地尝试在 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);}
    }
}
}

对不起,我长了。我接受任何帮助。

4

2 回答 2

1

恐怕没有简单的方法。当您粘贴时,您希望保留原始段落并避免新<p>创建,对吗?问题是当前段落和复制的段落可能具有不同的属性。例如,当前是左对齐的,但复制的一个是右对齐的。

如何解决案件?为了简化这个工具包,只需创建<p>元素。

您可以尝试从剪贴板内容创建一个独立的 HTMLDocument,并遍历 Document 的结构,提取元素(段落和文本)并将它们插入到原始文档中。

于 2013-07-04T05:34:23.357 回答
0

对于更多的读者,我用一个非常简单的技巧解决了它。我只是在需要时删除了\n粘贴文本前后添加的内容。

public static void copyContent(JTextPane jtp, String text, int offset) {
    try {
        boolean start = offset>0 ? !jtp.getText(offset-1, 1).equals("\n") : false;
        Position p = jtp.getDocument().createPosition(offset);
        new HTMLEditorKit().read(new StringReader(html), jtp.getHTMLdoc(), offset);
        if(start) {jtp.getDocument().remove(offset, 1);}
        if(offset>0) {jtp.getDocument().remove(p.getOffset()-1, 1);}
    } catch (IOException | BadLocationException ex) {
        Logger.getLogger(EditeurIO.class.getName()).log(Level.SEVERE, null, ex);
    }
}
于 2015-12-17T10:18:23.197 回答