JList:上一个选择的项目
我有一个 JList 并注册一个选择处理程序(ListSelectionListener)。 现在我需要之前选择的项目/索引。
到目前为止,我自己保存了最后选择的项目。有更好的方法吗? 换句话说:是否有我多年来怀念的方法/最佳实践?!
I have a JList and register a selection handler (ListSelectionListener).
Now I need to now the previous selected item/index.
Up to now, I save the last selected item on my own. Is there a better way to do so?
In other words: Is there are methode/best practice which I miss all the years?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
克利奥帕特拉不是这么说的。事件数据确实有帮助。您不能假设第一个索引代表所选行,最后一个索引代表前一行。
正如克利奥帕特拉建议的那样,你需要做进一步的检查。像这样的东西:
That is not what Kleopatra said. The event data does help. You just can't assume that the first index represents the selected row and the last index represents the previous row.
As Kleopatra suggested you need to do further checking. Something like:
您无需编写自定义代码即可将先前选定的项目存储在列表中。
JList 提供了一个 ListSelectionListener 它将为您完成这项工作。
这是获取最后选择的项目的方法。
You don't need to write your custom code to store the previous selected item in list.
JList provide a ListSelectionListener which will do the work for you.
Here is the way to get last selected item.