You can force the JTextArea (text area) to scroll to the bottom by moving the caret to the end of the text area after the call to append
:
textarea.append(“Some Text\n”);
textarea.setCaretPosition(textarea.getDocument().getLength());
You can force the JTextArea (text area) to scroll to the bottom by moving the caret to the end of the text area after the call to append
:
textarea.append(“Some Text\n”);
textarea.setCaretPosition(textarea.getDocument().getLength());