kle*_*tra 16
哈哈,永恒的问题 - 霍华德和克里斯都没有找到直接的封面方法:-)
table.setRowSelectionInterval(first, last)
table.addRowSelectionInterval(first, last)
Run Code Online (Sandbox Code Playgroud)
Cri*_*ris 12
ListSelectionModel selectionModel =
table.getSelectionModel();
selectionModel.setSelectionInterval(start, end);
Run Code Online (Sandbox Code Playgroud)
它通过SelectionModel提供
table.getSelectionModel().setSelectionInterval(int index0, int index1)
Run Code Online (Sandbox Code Playgroud)