我想出了一个问题。
这是我下面的方法:
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();
}
当我在我的主类中多次调用此方法时,此代码正在使用“我的字符串行”行创建我的 transaction.txt。但是,当我多次调用此方法以多次编写“我的字符串行”时,它只是覆盖了该行并没有给我类似的输出。
我的弦线
我的弦线
我的弦线
当我调用该方法 3 次时。
知道如何通过多次调用相同的方法多次编写同一行吗?