在 JTable 中单独合并列标题
有没有办法在单击按钮时合并列标题,但单元格中的值应该相互附加?
例如:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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.