Making a JScrollPane automatically scroll all the way down

后端 未结 6 1454
夕颜
夕颜 2021-02-05 07:42

I am trying to implement a JScrollPane with a JTextArea. The JTextArea is being appended to, and I want the JScrollPane to keep scrolling down as more text is added. How can thi

6条回答
  •  忘掉有多难
    2021-02-05 07:53

    If you are constantly writing data to it you could use:

    textArea.setCaretPosition(textArea.getDocument().getLength());
    

    just after you add the new data.

    This would automatically scroll all the way down the JScorllPane.

提交回复
热议问题