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添加新行时如何按升序或降序对JTable中的行进行排序?
根据您是否需要对多个列进行排序,您可以将 TableModelListener 添加到表模型中,以在表模型更改时执行自定义行为。只需执行
public void tableChanged(TableModelEvent e)
方法来捕获事件并对所需的列进行排序。一种方法是使用索引映射映射工作,该索引映射引用您要排序的列的数据,并根据您要排序的列重新使用索引映射。