多行表格单元格

发布于 2024-11-25 12:37:21 字数 73 浏览 3 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(2

白色秋天 2024-12-02 12:37:21

放入 TableCell fe JTextArea 或其他允许多行输出的 JComponent

put into TableCell f.e. JTextArea or another JComponents that allows multiline output

罗罗贝儿 2024-12-02 12:37:21

互联网上有一些关于如何执行此操作的示例。看起来这是开发人员尝试使用 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

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