If I understand your question correctly, you have a previous (or desired) selection stored, and you want to restore that selection:
int[] rowsToSelect = inputTable.getSelectedRows();
You can set or restore this selection at a later time or to another table:
final ListSelectionModel sm = inputTable.getSelectionModel();
sm.clearSelection(); // First clear selection
for ( final int idx : rowsToSelect )
sm.addSelectionInterval( idx, idx ); // Make this row selected
Note: You can improve performance if you first sort the indices, and call addSelectionInterval() with continuous index ranges:
Arrays.sort( rowsToSelect ); // You only have to sort if it is not yet sorted
final ListSelectionModel sm = inputTable.getSelectionModel();
sm.clearSelection(); // First clear selection
int rangeFirst = -1, previous = -1;
for ( final int idx : rowsToSelect ) {
if ( rangeFirst < 0 )
previous = rangeFirst = idx; // Start an index range
else if ( idx != previous + 1 ) {
// A continuous index range ends here, make it selected
sm.addSelectionInterval( rangeFirst, previous );
previous = rangeFirst = idx; // Start a new index range
}
else
previous = idx; // Index range is continuous, proceed to the next index
}
// Add the last range which is not handled by the for loop:
if ( rangeFirst >= 0 )
sm.addSelectionInterval( rangeFirst, previous );
Final note: If you want/have to select the same indices many times, it is profitable to store the continuous ranges so you don't have to detect them each time. Basically this means to store the ranges you pass to the sm.addSelectionInterval() method in the code sample above:
Arrays.sort( rowsToSelect ); // You only have to sort if it is not yet sorted
// Detect and store continuous index ranges:
final List< int[] > idxRangeList = new ArrayList< int[] >();
int rangeFirst = -1, previous = -1;
for ( final int idx : rowsToSelect ) {
if ( rangeFirst < 0 )
previous = rangeFirst = idx; // Start an index range
else if ( idx != previous + 1 ) {
// A continuous index range ends here, store it
idxRangeList.add( new int[] { rangeFirst, previous } );
previous = rangeFirst = idx; // Start a new index range
}
else
previous = idx; // Index range is continuous, proceed to the next index
}
// Add the last range which is not handled by the for loop:
if ( rangeFirst >= 0 )
idxRangeList.add( new int[] { rangeFirst, previous } );
// And now if you want those ranges selected:
final ListSelectionModel sm = inputTable.getSelectionModel();
sm.clearSelection(); // First clear selection
for ( final int[] range : idxRangeList )
sm.addSelectionInterval( range[ 0 ], range[ 1 ] );
table.setRowSelectionInterval(0, table.getModel().getRowCount()-1);? – Xeon Jul 27 '12 at 18:33selectAll, you've been shown how tosetRowSelectionIntervalto select only a range of rows and you KNOW how togetSelectedRowswhat's the question?? – MadProgrammer Jul 27 '12 at 22:38