在HTMLEditorKit / JEditorPane中强制执行<strong>而不是<b> </b> </strong>

时间:2013-08-08 11:27:57

标签: java swing htmleditorkit

我正在努力确保带有HTMLEditorKit的JEditorPane使用&lt; strong &gt;标签代替&lt; b &gt;标签。下面的代码加载了一个带有JEditorPane的JFrame。尝试选择文本的一部分,然后单击按钮将选择变为粗体。 System.out显示粗体是由标记引起的。

如何设置它以符合XHTML并使用标签?

import java.awt.BorderLayout;
import javax.swing.JButton;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import javax.swing.text.StyledEditorKit;
import javax.swing.text.html.HTMLEditorKit;

public class BStrongTest extends JPanel {

    /**
     * @param args
     */
    public static void main(String[] args) {
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        frame.add(new BStrongTest());
        frame.setSize(300, 200);

        frame.setVisible(true);
    }

    public BStrongTest() {
        setLayout(new BorderLayout());

        final JEditorPane pane = new JEditorPane();
        pane.setEditorKit(new HTMLEditorKit());
        pane.setText("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent bibendum.");
        add(pane, BorderLayout.NORTH);

        JButton boldButton = new JButton();
        boldButton.setAction(new StyledEditorKit.BoldAction());
        boldButton.setText("Boldify");
        add(boldButton, BorderLayout.SOUTH);

        pane.getDocument().addDocumentListener(new DocumentListener() {

            @Override
            public void changedUpdate(DocumentEvent e) {
                System.out.println(pane.getText());
            }

            @Override
            public void insertUpdate(DocumentEvent e) {
            }

            @Override
            public void removeUpdate(DocumentEvent e) {
            }
        });
    }
}

1 个答案:

答案 0 :(得分:1)

这个答案不完整,我继续回来继续使用它作为记事本。

javax.swing.text.html.HTML包含一个类Tag,它还包含大量代表每个HTML标记的最终Tag个实例。

我们对这条线感兴趣;

public static final Tag STRONG = new Tag("b");

javax.swing.text.html.HTMLDocument包含HashTable tagMap,可存储所有这些标记。

我们对这些线感兴趣;

tagMap.put(HTML.Tag.STRONG, ca);

caTagAction ca = new CharacterAction();

的位置
protected void registerTag(HTML.Tag t, TagAction a) {
    tagMap.put(t, a);
}

我还没找到TagAction的包裹或访问/更改HTMLEditorKit使用的HTML文档的方式。


我找到了我认为标记写出的位置(标有//here;

javax.swing.java.text.html.HTMLWriter.java

protected void writeEmbeddedTags(AttributeSet attr) throws IOException {

    // translate css attributes to html
    attr = convertToHTML(attr, oConvAttr);

    Enumeration names = attr.getAttributeNames();
    while (names.hasMoreElements()) {
        Object name = names.nextElement();
        if (name instanceof HTML.Tag) {
            HTML.Tag tag = (HTML.Tag)name;
            if (tag == HTML.Tag.FORM || tags.contains(tag)) {
                continue;
            }
            write('<');
            write(tag.toString());//Here
            Object o = attr.getAttribute(tag);
            if (o != null && o instanceof AttributeSet) {
                writeAttributes((AttributeSet)o);
            }
            write('>');
            tags.addElement(tag);
            tagValues.addElement(o);
        }
    }
}

所以看起来我们需要更改正在编写的文档中attributeSet的任何构建。