假设JTable table已实例化,设置选中表格中的行:table.setRowSelectionInterval(int index0,int index1)//选择从 index0 到 index1 之间(包含两端)的行。table.setRowSelectionInterval(0,0);//表示选中第一行
ListSelectionModel model = table.getSelectionModel();model.setSelectionInterval(r1,r2);