JTextArea中的行间距

时间:2009-12-07 03:03:59

标签: java line spacing jtextarea

似乎我当前的JTextArea实例的行间距约为1或1.5。有人能告诉我如何更改JTextArea实例中的行间距吗?

1 个答案:

答案 0 :(得分:11)

进行Google搜索建议您使用JTextPane,尤其是位于heresetParagraphAttributes

获得所需AttributeSet的方法如下:

MutableAttributeSet set = new SimpleAttributeSet();
StyleConstants.setLineSpacing(set, /* your spacing */);

现在只需将set传递给setParagraphAttributes方法。

希望这有帮助。