JTable、RowSorter、getSelectedRow 数据

发布于 2024-10-13 21:24:39 字数 496 浏览 1 评论 0原文

我在 JTable 中使用 RowSorter,当我对其中一列进行排序并调用方法 getSelectedRowData() 时,它返回错误的数据。

public Object getSelectedRowData()
{
    if(getDataArray() != null)
    {
        if(grid.getRowSorter() != null)
            return ((GridModel) grid.getRowSorter().getModel()).getData().get(grid.getSelectedRow());
        else
            return model.getData().get(grid.getSelectedRow());
    }
    else
        return null;
}

我认为问题在于排序器对表数据进行排序,但带有数据的 ArrayList 未重新加载。 我该如何修复它?

I'm using RowSorter in JTable and when I sort one of the column and call the method getSelectedRowData() it return wrong data.

public Object getSelectedRowData()
{
    if(getDataArray() != null)
    {
        if(grid.getRowSorter() != null)
            return ((GridModel) grid.getRowSorter().getModel()).getData().get(grid.getSelectedRow());
        else
            return model.getData().get(grid.getSelectedRow());
    }
    else
        return null;
}

I think that the problem is that the sorter sort the table data but the ArrayList with data isn't reloaded.
How I can fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋千易 2024-10-20 21:24:39

为了获取当前选定的数据,您可以将视图中选定的行号转换为模型行号。

jTable1.convertRowIndexToModel(jTable1.getSelectedRow())

For getting current selected data you can convert selected row number in view to model row number.

jTable1.convertRowIndexToModel(jTable1.getSelectedRow())
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文