标签: swing sorting jtable
我有一个包含多个列的Jtable,我想避免用户可以按任何数据对其进行排序,例如:第一列标题单元格应该是可点击的(可排序列),而其他列标题单元格不是。我怎么能这样做?
答案 0 :(得分:2)
您可以在TableRowSorter中设置列的可排序属性:
table.setAutoCreateRowSorter(true); ((TableRowSorter) table.getRowSorter()).setSortable(0, false);