为什么 TableRowSorter 会弄乱我的结果?

发布于 2024-11-08 14:37:57 字数 245 浏览 0 评论 0原文

我有一个 JTable,我将一个 DefaultTableModel 和一个 TableRowSorter 链接到它。他们工作。当您单击一行时,其内容将被复制到 JTextfields,以便您可以编辑它们*。但是,如果您按某个字段对表进行排序,然后单击一行,则复制的内容将从其上一个值(排序之前)而不是新值中获取。可能是什么原因造成的?

*我这样做是因为该表仅包含所有字段的子集。

I have a JTable to which I linked a DefaultTableModel and a TableRowSorter. They work. When you click in a row, its content is copied to JTextfields so you can edit them*. But if you sort the table by some field and then click in a row, the copied content is taken from its previous value (before the sort) instead from the new one. What can be causing this?

*I do this because the table only contains a subset of all fields.

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

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

发布评论

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

评论(1

氛圍 2024-11-15 14:37:57

看起来当您获取选定的行索引时,您在获取数据之前并未将其转换为模型索引。

而不是这个:

table.getSelectedRow()

使用这个:

table.convertRowIndexToModel(table.getSelectedRow());

Looks like when you are getting the selected row index you are not converting it to the model index before you grab the data.

Instead of this:

table.getSelectedRow()

Use this:

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