我知道我可以在javax.swing.text.DefaultStyledDocument
上设置字体大小:
public void apply(DefaultStyledDocument document) {
final MutableAttributeSet attributeSet = new SimpleAttributeSet();
StyleConstants.setFontSize(attributeSet, 12);
document.setCharacterAttributes(0, 80, attributeSet, false);
}
如何设置字体颜色?
答案 0 :(得分:1)
我猜你会使用StyleConstants.setForeground(...)方法。