似乎我当前的JTextArea实例的行间距约为1或1.5。有人能告诉我如何更改JTextArea实例中的行间距吗?
答案 0 :(得分:11)
进行Google搜索建议您使用JTextPane
,尤其是位于here的setParagraphAttributes
。
获得所需AttributeSet
的方法如下:
MutableAttributeSet set = new SimpleAttributeSet();
StyleConstants.setLineSpacing(set, /* your spacing */);
现在只需将set
传递给setParagraphAttributes
方法。
希望这有帮助。