如何重置JTable列箭头



我的JTable使用可排序的列:

table.setAutoCreateRowSorter(true);

问题是,在用户单击列标题后,没有办法删除箭头。即使我删除了表中的所有行

我试着做相反的事情,但它不起作用:

table.setAutoCreateRowSorter(false);

箭头没有被删除的事实似乎是一个绘画问题。呼叫table.getTableHeader().repaint()似乎使箭头消失。

完整的示例:

public class JTableSortRestore {
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
runGui();
});
}
private static void runGui() {
JFrame frame = new JFrame("");
frame.setLayout(new BorderLayout());
DefaultTableModel model = new DefaultTableModel();
model.addColumn("Col");
model.addRow(new String[] { "BBB" });
model.addRow(new String[] { "AAA" });
model.addRow(new String[] { "CCC" });
JTable table = new JTable(model);
table.setAutoCreateRowSorter(true);
frame.add(new JScrollPane(table));
JButton restoreButton = new JButton("Restore sorting");
restoreButton.addActionListener(e -> {
table.setAutoCreateRowSorter(false);
table.setAutoCreateRowSorter(true);
table.getTableHeader().repaint();
});
frame.add(restoreButton, BorderLayout.PAGE_END);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
}

相关内容

  • 没有找到相关文章

最新更新