大致是这样的,字母可能有打错的地方,望包涵!
import javax.swing.*;public class Test extends JFrame {
  //do something;
  JTalbe table;
  //do something;  public void setSelectionRow(int row) {
     SwingUtilities.invokeLater(
        new Runnable() {
            public void run() {
               table.getSelectionModel().setAnchorSelectionIndex(row); 
            }
        }
     );
  }
}
}