I have a problem with my text area.
I use jTextArea1.append(\"cleverly amusing\"); to add the text..
jTextArea1.append(\"cleverly amusing\");
FIRST APPEND:
Instead of removeAll, just call setText() with the first line you want and then you can append the additional data if you want.
removeAll
setText()