gpt4 book ai didi

java - 删除 JTable 中选定的列表元素

转载 作者:行者123 更新时间:2023-12-01 17:09:27 25 4
gpt4 key购买 nike

我有一个基于表模型的 JTable,它使用 List,我想删除在此 JTable 中选择的元素,从 List 中,JTable 是可排序的,因此当我获取选定的行时,我不能简单地 list.remove,因为顺序不同。有办法解决这个问题吗?

最佳答案

看看JTable方法convertRowIndexToViewconvertRowIndexToModel:

The selection is always in terms of JTable so that when using RowSorter you will need to convert using convertRowIndexToView or convertRowIndexToModel. The following shows how to convert coordinates from JTable to that of the underlying model:

  int[] selection = table.getSelectedRows();
for (int i = 0; i < selection.length; i++) {
selection[i] = table.convertRowIndexToModel(selection[i]);
}
// selection is now in terms of the underlying TableModel

查看How to Use Tables # Sorting and Filtering举一些例子。

关于java - 删除 JTable 中选定的列表元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24317216/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com