看来我当前的 JTextArea 实例的行间距约为 1 或 1.5。谁能告诉我如何更改 JTextArea 实例中的行距?
问问题
6246 次
进行谷歌搜索表明您应该使用JTextPane
,尤其是setParagraphAttributes
位于此处的。
获得AttributeSet
所需的方法如下:
MutableAttributeSet set = new SimpleAttributeSet();
StyleConstants.setLineSpacing(set, /* your spacing */);
现在只需传入set
该setParagraphAttributes
方法。
希望这可以帮助。