选择 JTable 的多行
我目前正在使用 JTable 来显示数据库中的内容。我想为用户提供便利,以便他可以使用shift+箭头键选择他想要的行数,然后使用提供的删除选项删除这些记录。请提供一个小例子。
I'm currently using JTable to show the contents in database. I want to provide the facility for user so that he can select the number of rows he wants using shift+arrow key and then later on delete those records using the option provided for deletion. Please provide a small example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要允许多重选择:
然后您需要编写适当的选择监听器。有点难,尝试在google中查找相关解决方案。您可以查看选择侦听器的示例。
You need to allow multiple selection:
Then you need to write appropriate selection listener. It's a bit harder, try to find in google related solutions. You can look at an example of selection listener.