Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
597 views
in Technique[技术] by (71.8m points)

swing - 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

enter image description here

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If your JTextArea will only contain "WORD HINT: ..." then use the setText() method:

jTextArea1.setText("WORD HINT:
" + 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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...