JTable 单元格中有两行或多行?
如何将两行或多行放入一个 JTable 单元格中?我尝试在行尾添加“\n”,但它不起作用。
How do I put two or more lines into a single JTable cell? I tried to add '\n' at the end of the line but it doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这样的 HTML
Try HTML like this
作为额外信息:HTMl 之所以有效,是因为 JTable 的默认渲染器是 JLabel,JTable 中 HTML 的性能并不是很好,因此,如果您在使用大量 HTMl 后发现性能问题,那么这是一个不错的选择。更好地
看看 http: //ckw.phys.ncku.edu.tw/public/pub/src/HTML/Languages/Java/Swing/swingHTML/Chapter27.htm 如果您想要高性能多行标签,请参阅解决方案
As extra info: the HTMl works because the default renderer for a JTable is a JLabel, the performance of the HTML in the JTable is not really good, so if you notice performance issues after using alot of HTMl then that is a good choice of makign better
look at http://ckw.phys.ncku.edu.tw/public/pub/src/HTML/Languages/Java/Swing/swingHTML/Chapter27.htm for a solution if you want high performance multiline labels