我创建了一个JTable,其中包含的项目提供了单选按钮,以便用户可以一次选择任何一个。为了始终显示JTable初始化时选择的第一个项目(或者之前选择的项目已被删除),我应该使用哪种方法?
答案 0 :(得分:2)
您应该看到the JTable Javadoc,尤其是:
getCellRect(int row, int column, boolean includeSpacing)
和
scrollRectToVisible(Rectangle aRect)
像
这样的东西table.scrollRectToVisible(table.getCellRect(table.getSelectedRows()[0], 0, true));
应该适合你。