如何在 JTable 中按日期排序记录?
How to order records by the date in a JTable?
这是我的图形用户界面。我基本上希望 JTable 中的记录按日期升序排列。
你能告诉我怎么做吗?
试试看这个例子,我想它可能对你有帮助
http://www.java2s.com/Tutorial/Java/0240__Swing/SampleSortingTableModel.htm
或者这也有效:
JTable.getRowSorter().toggleSortOrder(index);
index指的是你要排列记录的列的索引。
这是我的图形用户界面。我基本上希望 JTable 中的记录按日期升序排列。
你能告诉我怎么做吗?
试试看这个例子,我想它可能对你有帮助 http://www.java2s.com/Tutorial/Java/0240__Swing/SampleSortingTableModel.htm
或者这也有效:
JTable.getRowSorter().toggleSortOrder(index);
index指的是你要排列记录的列的索引。