在 JTable 中单独合并列标题

发布于 2024-08-28 17:28:39 字数 365 浏览 4 评论 0原文

有没有办法在单击按钮时合并列标题,但单元格中的值应该相互附加?

例如:

10      15      20     25     30
A       B       C      D      E
B       C       D      A      E

10              20            30
AB              CD            E
BC              DA            E

实际上值A代表10-15 B代表15-20等等。这在JTable中可能吗? 请不要将我之前的问题与此混淆。在这里,我们尝试合并两个列标题而不是单元格,同时附加单元格的值。

Is there a way to merge column headers on click of a button but the values in the cell should get appeneded with each other?

For instance:

10      15      20     25     30
A       B       C      D      E
B       C       D      A      E

10              20            30
AB              CD            E
BC              DA            E

Actually the value A represents 10-15 B represents 15-20 and so on.Is this possible in JTable?
Please don't confuse my earlier question with this.Here we try to merge two column headers not cells at the same time we append the values of the cell.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

喵星人汪星人 2024-09-04 17:28:39

您可以使用 getValueAt(...) 和 setValueAt(...) 方法执行任何操作。

因此,您获取两列的值并将它们组合成一个字符串,然后重置第一列中的值。然后将第二列设置为空字符串。

You can do whatever you want using the getValueAt(...) and setValueAt(...) methods.

So you get the values of the two columns and combine them into a single string and then reset the value in the first column. Then you set the second column to the empty string.

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