Is there a simple way to sort rows in a JTable with Java 1.5 (setAutoCreateRowSorter and TableRowSorter appear to be Java 1.6 features)?
|
|
|
|
|
|
|
Sorting in Java 1.5 is only possible via libraries. E.g. use the JXTable mentioned from Kaarel or VLTable from here. Another good library is glazedlists which is also used in the Spring Rich Client project. There are even ways to use Glazed Lists with JXTable |
||
|
|
|
|
Use the |
|||
|
|
|
|
JXTable requires a big package, and is difficult to get the right version for. (no higher than version 1.0 for Java 1.5). Try instead TableSorter.java. Get it at: http://ouroborus.org/java/2.1/TableSorter.java And insert it in your project. Now you wrap your tableModel in an instance of TableSorter, and instert that into the JTable. TableSorter acts as a "go-between" the JTable-instance and your tableModel. Use it something like this (code untested):
You can set sprting programmatically like this:
Try tweeking |
||
|
|
