Appending text in Java's JTextArea

£可爱£侵袭症+ 提交于 2019-12-29 08:54:15

问题


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 JTextArea will only contain "WORD HINT: ..." then use the setText() method:

jTextArea1.setText("WORD HINT:\n" + word);

This will replace all the text with what you want.

BTW : removeAll() is part of the Container class, and is not to remove text but child components.




回答2:


Why not use setText(String text) instead of append(String text)?




回答3:


Instead of removeAll, just call setText() with the first line you want and then you can append the additional data if you want.



来源:https://stackoverflow.com/questions/4852839/appending-text-in-javas-jtextarea

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!