問題が発生しました。
これは以下の私の方法です:
public void someMethod()
{
StringBuilder newFile = new StringBuilder();
String edited = "My String Line";
newFile.append(edited);
newFile.append("\n");
FileWriter fstreamWrite = new FileWriter("transaction.txt");
BufferedWriter out = new BufferedWriter(fstreamWrite);
out.write(newFile.toString());
out.close();
}
そして、メインクラスでこのメソッドを複数回呼び出すと、このコードは「My String Line」という行で transaction.txt を作成します。しかし、「My String Line」を数回書き込むためにこのメソッドを複数回呼び出すと、行が上書きされ、出力が得られません。
マイストリングライン
マイストリングライン
マイストリングライン
メソッドを3回呼び出すと。
同じメソッドを複数回呼び出すのと同じように、同じ行を複数回書き込む方法はありますか?