5

我正在使用 aJTextPane来显示字符和符号,后者由自定义绘制的JComponents. 例如,文本窗格可能会显示如下内容: 在此处输入图像描述 文本窗格是用户可编辑的,并且允许用户通过任意位置的按钮添加更多符号并作为选定文本的替换。我通过JTextPane.insertComponent()方法做到这一点。在应用程序的某个时刻,我需要知道文本窗格中当前显示的内容,我指的不仅是输入的文本,还包括其中包含的确切组件。

我在处理PositionsDocumentListeners管理我的文本窗格的内容方面遇到了很多麻烦,但我一直在造成比我解决的问题更多的问题。这就是为什么我最终决定,我的麻烦可能是由于我的设计错误,所以我决定看看,如果我不能通过文本窗格访问我的组件。

翻遍了AbstractDocument相关类的文档和源代码,找到了接口javax.swing.text.Element。然后我让我的应用程序输出

for(int i = 0; i < textPane.getDocument().getLength(); i++) {
    System.out.println(((StyledDocument) textPane.getDocument()).getCharacterElement(i));
}

这给了我:

叶元素(内容)0,4

叶元素(内容)0,4

叶元素(内容)0,4

叶元素(内容)0,4

LeafElement(组件)4,5

叶元素(内容)5,9

叶元素(内容)5,9

叶元素(内容)5,9

叶元素(内容)5,9

LeafElement(组件)9,10

看到LeafElements我得到的似乎确实有一些关于在 中的哪个位置显示什么的信息Document,我认为必须有可能在该位置获得实际内容。又搜索了半个小时如何获取每个元素所代表的内容,我放弃了,决定在这里发布我的问题,希望你们中的一些人可能知道如何完成这个!?

我见过这个问题,有人试图通过 访问组件textPane.getComponents(),它返回一个组件数组,其中包含实际包含的组件的确切数量JTextPane,但它们都是 type javax.swing.text.ComponentView$Invalidator,这显然对我没有用。也许我只是不知道如何从这里正确继续,因为转换为我的符号的原始类型不起作用。

tl;博士

如何从文本窗格中获取位于 aJComponent文本内的 aJTextPane及其位置?

4

2 回答 2

11

您可以遍历文本窗格StyledDocument以查找代表组件或图标的元素,如下所示。

图片

分支元素(部分)0,7

BranchElement(段落) 0,7

叶元素(内容)0,4

叶元素(图标)4,5

类 javax.swing.plaf.IconUIResource
LeafElement(组件)5,6

类 javax.swing.JLabel
叶元素(内容)6,7

SSCCE:

/**
 * @see http://stackoverflow.com/a/15669307/230513
 * @see http://stackoverflow.com/questions/2883413
 */
public class DocumentParse {

    private static final String ELEM = AbstractDocument.ElementNameAttribute;
    private static final String ICON = StyleConstants.IconElementName;
    private static final String COMP = StyleConstants.ComponentElementName;

    public static void main(String args[]) throws Exception {
        JFrame f = new JFrame();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JTextPane jtp = new JTextPane();
        StyledDocument doc = (StyledDocument) jtp.getDocument();
        SimpleAttributeSet normal = new SimpleAttributeSet();
        StyleConstants.setFontFamily(normal, "Serif");
        StyleConstants.setFontSize(normal, 72);
        StyleConstants.setForeground(normal, Color.blue);
        doc.insertString(doc.getLength(), "Test", normal);
        jtp.setSelectionStart(doc.getLength());
        jtp.insertIcon(UIManager.getIcon("OptionPane.warningIcon"));
        jtp.setSelectionStart(doc.getLength());
        jtp.insertComponent(new JLabel("Label"));
        jtp.setSelectionStart(doc.getLength());

        ElementIterator iterator = new ElementIterator(doc);
        Element element;
        while ((element = iterator.next()) != null) {
            System.out.println(element);
            AttributeSet as = element.getAttributes();
            if (as.containsAttribute(ELEM, ICON)) {
                System.out.println(StyleConstants.getIcon(as).getClass());
            }
            if (as.containsAttribute(ELEM, COMP)) {
                System.out.println(StyleConstants.getComponent(as).getClass());
            }
        }

        f.add(jtp);
        f.pack();
        f.setLocationRelativeTo(null);
        f.setVisible(true);
    }
}
于 2013-03-27T20:57:09.427 回答
4

javax.swing.text.ComponentView$Invalidator从 ComponentView 中可以看到,原始组件是 的第一个(也是唯一的)子组件。

您可以获取无效器列表并使用它们的子级来访问插入的组件。

于 2013-03-28T06:54:08.747 回答