如何使用 ActionListener 从 JTable 中删除列
我只是想知道我想在单击按钮后从 JTable 中删除特定列,如果我再次单击该按钮,它应该添加删除的列。
谢谢和问候, 说。
I just wanted to know that i want to remove a particular column from JTable after i click on a button and if i again click on that button it should add the removed column.
Thanks and Regards,
Sayed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅我的回答 到“如何在 JTable 中创建列对于 Swing Java 不可见”。
See my answer to "How to make a columns in JTable Invisible for Swing Java".
我发现 XTableColumnModel 非常适合此要求。使用它作为表的列模型,然后要求它隐藏/显示您想要的列。
它最好的一点是,当您隐藏列时,它会存储该列的位置,以便稍后当您要求它再次可见时,它会出现在相同的位置。
I find the XTableColumnModel really handy for this requirement. Use it as the table's column model, and then ask it to hide/show the columns you want.
The best thing about it is that it stores the column's position when you hide it, so that it appears in its same position later when you ask it to be visible again.