テキストエリアに複数のテキストを追加するには?
私には2つの方法があります:
public void error() {
area.setText("error"+"\n");
}
と
public void processCall(StringBuilder sb) {
area.setText("Process said:"+sb+"\n");
}
これらのメソッドを実行すると、テキスト フィールドに表示されるのは
Process said:(with the cursor on the next line)
エラー メッセージは上書きされます。好きなだけテキストを書くにはどうすればよいですか?