0

テキストエリアに複数のテキストを追加するには?

私には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)

エラー メッセージは上書きされます。好きなだけテキストを書くにはどうすればよいですか?

4

3 に答える 3