我在 JScrollPane 中有一个 JTable,我想以编程方式滚动到表格的底部。我试过的代码是:
int bottomRow = table.getRowCount()-1;
Rectangle rect = table.getCellRect(bottomRow,0,true);
table.scrollRectToVisible(rect);
我也尝试了代码:
int bottomRow = table.getRowCount()-1;
Rectangle rect = table.getCellRect(bottomRow,0,true);
jscrollPane1.getViewPort().setViewPosition(rect.getLocation());
两个代码片段的行为相同,并且都不是将表格滚动到底行,而是根据矩形的高度将表格滚动到底行上方的几行。
我需要帮助才能在可见矩形中查看表格的最后一行。