I need to scroll a JScrollPane to the bottom. The JScrollPane contains a JPanel, which contains a number of JLabel\'s.
To scroll to the top, I just do:
None of the answers worked for me. For some reason my JScrollPane was not scrolling to the very bottom, even if I revalidated everything.
JScrollPane
This is what worked for me:
SwingUtilities.invokeLater(() -> { JScrollBar bar = scroll.getVerticalScrollBar(); bar.setValue(bar.getMaximum()); });