多行表格单元格
我有一个 JTable 组件,可以在其中显示一些数据。我的一列是一个字符串,对于我的单元格来说太长了。如何使该列中的单元格成为多行?
I have an JTable component where I display some data. One of my column is a string, which is too long for my cell. How can I make cells in that column multi-line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
放入 TableCell fe JTextArea 或其他允许多行输出的 JComponent
put into TableCell f.e. JTextArea or another JComponents that allows multiline output
互联网上有一些关于如何执行此操作的示例。看起来这是开发人员尝试使用 JTables 完成的一项非常常见的任务。基本上,您想要做的是使用 AbstractCellEditor/JTextArea 实现您自己的单元格编辑器。下面是一个带有源代码的此类示例的链接:
http://www.jroller.com/santhosh/条目/multiline_in_table_cell_editing1
There are some examples on the Internet about how to do this. Seems like its a pretty common task developers try and accomplish with JTables. Basically what you want to do is implement your own cell editor using AbstractCellEditor/JTextArea. Heres a link to one such example with source code:
http://www.jroller.com/santhosh/entry/multiline_in_table_cell_editing1