将行的最后一个单词设置为 jtextarea 中的下一行
这可能是一个非常简单的问题,但我没有从任何地方得到任何答案。
我有一个字符串变量,它保存一个很长的段落字符串,并且旨在通过 .setText(str)
放置在 JTextArea
上;
我的问题是如何使该行的最后一个单词(不适合该行的右边缘)转移到下一行。
下面的插图可能会帮助我的问题:
问题:
The quick brown fox ju
mps over the lazy dog.
需要解决方案:
The quick brown fox
jumps over the lazy
dog.
This may be a very simple question but I don't get any answers from anywhere.
I have a string variable that holds a very long paragraph string, and is intended to be placed on a JTextArea
, by .setText(str)
;
My problem is how to make the last word of the line (that do not fit to the right edge on that line) to be transferred on the next line.
An illustration below may help my problem:
Problem:
The quick brown fox ju
mps over the lazy dog.
Solution needed:
The quick brown fox
jumps over the lazy
dog.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
启用自动换行以强制文本区域不在单词中间换行。
来源 http://www.exampledepot.com/egs/javax.swing。文本/ta_Wrap.html
Enable Word wrapping to force the Text area to not wrap in the middle of a word.
Source http://www.exampledepot.com/egs/javax.swing.text/ta_Wrap.html
JTextArea 有一个 .setLineWrap 属性。听起来这就是你所需要的。
JTextArea API
源来自 Java2s.com:
The JTextArea has a .setLineWrap property. Sounds like thats what you need.
JTextArea API
Source code from Java2s.com:
您可以在使用以下代码将字符串数据设置为 JTextArea 之前对其进行编辑:
然后在 set jtextArea.setText(sb.toString()); 之后
谢谢
You can edit your String data just before setting it to the JTextArea using the below code:
Then after set jtextArea.setText(sb.toString());
Thanks