如何在JTextPane上添加不同颜色的文本

2022-09-03 03:46:43

任何人都可以帮我简单的日志,我必须在JTextPane日志消息的第一行添加所选颜色(绿色确定,红色失败)。如何做到这一点?


答案 1

这将以两种不同的颜色打印出“BLAH BLEG”。

public class Main {
    public static void main(String[] args) {
        JTextPane textPane = new JTextPane();
        StyledDocument doc = textPane.getStyledDocument();

        Style style = textPane.addStyle("I'm a Style", null);
        StyleConstants.setForeground(style, Color.red);

        try { doc.insertString(doc.getLength(), "BLAH ",style); }
        catch (BadLocationException e){}

        StyleConstants.setForeground(style, Color.blue);

        try { doc.insertString(doc.getLength(), "BLEH",style); }
        catch (BadLocationException e){}

        JFrame frame = new JFrame("Test");
        frame.getContentPane().add(textPane);
        frame.pack();
        frame.setVisible(true);
    }
}

看这里: 样式教程

并检查标记为:使用文本窗格的示例,以获取有关如何动态更改颜色的出色示例。


答案 2

推荐