How can I add text to a JTextArea instead of replacing all of it?
JTextArea
I know about setText(String) but other than that I\'m a bit lost.
setText(String)
You can use the append method like this:
textArea.append(additionalText);