Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含几列的 Jtable,我想避免用户可以按任何数据对其进行排序,例如,第一列标题单元格应该是可点击的(可排序的列),而其他的则不是。我怎样才能做到这一点?
您可以在 TableRowSorter 中设置列的可排序属性:
table.setAutoCreateRowSorter(true); ((TableRowSorter) table.getRowSorter()).setSortable(0, false);