如何对存储在 JTextPanes(JList 中的单元格)中的文本进行自动换行
我创建了一个 JList
,其中包含 JTextAreas
,当 setLineWrap(true); 时,单词会正确换行;使用了 setWrapStyleWord(true);
。这些不适用于 JTextPane
并且我的上帝抛弃的文本没有换行。有什么建议吗?
I created a JList
that had JTextAreas
which word wrapped appropriately when setLineWrap(true); setWrapStyleWord(true);
was used. These aren't available for JTextPane
and my god forsaken text isn't wrapping. Any advise?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用此示例在 JTextPane 中实现您自己的换行
http://java-sl.com/wrap.html
USe this example to implement your own wrap in JTextPane
http://java-sl.com/wrap.html