我知道我可以像这样在javax.swing.text.DefaultStyledDocument上设置字体大小:

public void apply(DefaultStyledDocument document) {
    final MutableAttributeSet attributeSet = new SimpleAttributeSet();
    StyleConstants.setFontSize(attributeSet, 12);
    document.setCharacterAttributes(0, 80, attributeSet, false);
}


如何设置字体颜色?

最佳答案

我猜你会使用StyleConstants.setForeground(...)方法。

10-04 10:15