使用Styled Document.insertString将富文本附加到JTextPane不会保留字体

时间:2012-04-17 14:50:27

标签: java swing jtextpane

我不知道我想做的事情是否可行。

我有控制台,我想附加如下声明的格式化文本:

private final JTextPane statusText = new JTextPane();

我得到了这样的样式文档的引用:

private StyledDocument statusDocument = statusText.getStyledDocument();

我定义了一些属性:

private final SimpleAttributeSet gray;
private final SimpleAttributeSet black;
private final SimpleAttributeSet red;

和辅助方法:

private void appendStatusText(String text, SimpleAttributeSet attribute) {
        final String finalText = text;
        final SimpleAttributeSet finalAttribute = attribute;
        SwingUtilities.invokeLater(new Runnable() {

            @Override
            public void run() {
                try {
                    statusDocument.insertString(statusDocument.getLength(), finalText, finalAttribute);
                } catch (BadLocationException e) {
                    log.error("Cannot add " + finalText, e);
                }
            }
        });
    }

我想将 appendStatusText 与其中一个属性(灰色,红色,黑色)和一些文本一起使用,但它显示的只是灰色,我期待多色。

你能帮忙吗。

PS:我从问题here

中得到了代码

2 个答案:

答案 0 :(得分:4)

TextComponentDemoinitDocument()方法显示了构建此类文档的一种方法。 example出现在教程文章Examples That Use Text Panes and Editor Panes中的How to Use Editor Panes and Text Panes中。

答案 1 :(得分:0)

您必须定义SimpleAttributeSet,然后添加所需的属性,如下所示:

private SimpleAttributeSet red = new SimpleAttributeSet();      
red.addAttribute(StyleConstants.CharacterConstants.Foreground, Color.red);