我有一个可排序的 JTable(通过在初始化时调用 setAutoCreateRowSorter(true) 使其可排序)。我以编程方式对该表进行排序,并且我想禁用表头上的默认事件处理,以便只能以编程方式对该表进行排序。如何实现?
工作代码将是:
public class SortTable extends JDialog {
private JTable table;
DefaultRowSorter<TableModel, String> sorter;
public SortTable() {
JScrollPane scrollPane = new JScrollPane();
setBounds(0, 0, 300, 200);
getContentPane().setLayout(new BorderLayout());
getContentPane().add(scrollPane, BorderLayout.CENTER);
//-------most important stuff-------------------
table = new JTable();
table.setAutoCreateRowSorter(true); //enabling sorting
table.setModel(createModel());
sorter = (DefaultRowSorter<TableModel, String>)table.getRowSorter(); //store sorter to sort programatically later on
//-----------------------------------------------
scrollPane.setViewportView(table);
JPanel buttonPane = new JPanel();
buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT));
getContentPane().add(buttonPane, BorderLayout.SOUTH);
buttonPane.add(new JButton(getSortAction()));
}
private AbstractAction getSortAction() {
return new AbstractAction("Sort") {
@Override
public void actionPerformed(ActionEvent e) {
sorter.setSortKeys(Arrays.asList(new SortKey(0,SortOrder.ASCENDING)));
sorter.sort(); //sorting programatically
}
};
}
private DefaultTableModel createModel() {
return new DefaultTableModel(
new Object[][] {
{"1", "3"},
{"5", "2"},
{"4", null},
},
new String[] {
"A", "B"
}
);
}
}
此示例是一个 JDialog,其中包含一个带有排序按钮的 JTable。按下该按钮将导致 A 列升序排序。但是,按钮并不是对表格进行排序的唯一方法——我们可以简单地单击表格标题来更改排序。我的问题是如何使按钮成为对表格进行排序的唯一方法。知道如何摆脱排序更改时出现的箭头也很好。