Sorting rows by columns in JTable

Solution 1:

please read tutorial about JTable that's contains TableRowSorter example,

your answer is these codes lines, set column Class correctly

public Class getColumnClass(int c) {
   return getValueAt(0, c).getClass();
}

// or could be in most cases hardcoded, and I'm using that too

            @Override
            public Class<?> getColumnClass(int colNum) {
                switch (colNum) {
                    case 0:
                        return Integer.class;
                    case 1:
                        return Double.class;
                    case 2:
                        return Long.class;
                    case 3:
                        return Boolean.class;
                    case 4:
                        return String.class;
                    case 5:
                        return Icon.class;
                    /*case 6:
                    return Double.class;
                    case 7:
                    return Double.class;
                    case 8:
                    return Double.class;*/
                    default:
                        return String.class;
                }
            } 

Solution 2:

The default row sorter will sort based on the column class. If the column class is Object (the default) then it uses the toString() method. If you can change what you put into the column to something that implements the Comparable interface (e.g. Integer/Double) then it will use that comparator instead. You will have to also change the column class on the table model.

In order to do that you will have to extend DefaultTableModel (or implement AbstractTableModel or TableModel) and override the getColumnClass() method.

If you can't change the data that goes into the column (for some reason you want to store strings there) then you will have to modify the RowSorter for the table.

DefaultRowSorter rowSorter = new DefaultRowSorter();
rowSorter.setComparator(numberColumnIndex,numberSortingComparator);
table.setRowSorter(rowSorter);