JTextArea 中的行间距

发布于 2024-08-14 04:28:47 字数 69 浏览 7 评论 0原文

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

It seems my current JTextArea instance is having line-spcing about 1 or 1.5. Can anybody tell me how to change the line-spacing in JTextArea instance?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

对风讲故事 2024-08-21 04:28:47

进行谷歌搜索建议您应该使用JTextPane,特别是位于此处

获取您需要的AttributeSet的方法如下:

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

现在只需将set传入setParagraphAttributes方法即可。

希望这有帮助。

Doing a google search suggests you should be using JTextPane and in particular the setParagraphAttributes located here.

The way to get the AttributeSet you need is as follows:

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

Now just pass in set to the setParagraphAttributes method.

Hope this helps.

如日中天 2024-08-21 04:28:47

不要忘记放在

textpane.selectAll();

前面

textpane.setParagraphAttributes....

,否则它将不起作用!

dont forget to put

textpane.selectAll();

before

textpane.setParagraphAttributes....

or it will not work!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文