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:
If your JScrollPane only contains a JTextArea then:
JScrollPane.getViewport().setViewPosition(new Point(0,JTextArea.getDocument().getLength()));