Jtextarea与Jtable中下拉框始终显示在最后一行

Jtextarea中下拉框始终显示在最后一行:

jtextarea.setCaretPosition(jtextarea.getText().length());

Jtable中下拉框始终显示在最后一行:

currentRowCount 表示当前的共计行
 table.getSelectionModel().setSelectionInterval(currentRowCount - 1, currentRowCount - 1);
Rectangle rect = table.getCellRect(currentRowCount - 1, 0, true);
table.scrollRectToVisible(rect);

你可能感兴趣的:(swing)