如何将文本附加到Java程序中的文本区域?

时间:2013-12-05 11:07:00

标签: java swing user-interface awt append

我有一个名为text_ref的文本区域。我需要为它添加文本,而不是写它。与日志类似,其中文本附加到日志中,并且永远不会被覆盖。如何将文字附加到其中?我目前正在使用“setText”。

text_ref.setText(nationality + "is the nationality...");

3 个答案:

答案 0 :(得分:4)

使用append方法

text_ref.append(nationality + "is the nationality...");

答案 1 :(得分:2)

使用传递String文字的append方法,需要附加

  text_ref.setText(nationality + "is the nationality...");
  text_ref.append("I am just appending here to the current text");

答案 2 :(得分:0)

要在JTextArea子对象中追加文本,您必须使用此对象的append方法。

text_ref.append("some text to append");

nationality = "Polish";
text_ref.append(nationality);