Appending text in Java's JTextArea
问题 I have a problem with my text area. I use jTextArea1.append("cleverly amusing"); to add the text.. FIRST APPEND: then I use jTextArea1.append("a fight"); to add the next text. SECOND APPEND What I Really want is to replace the "cleverly amusing" to "a fight". But I cannot do it. I tried to use the jTextArea1.removeAll(); but there's no effect. How can I remove the "cleverly amusing" so that I can append the "a fight" to the first line. NOTE: "WORD HINT" is fixed... What can I do? 回答1: If your