我的问题是,我满了一个csv文件,但我希望每次我运行我的代码清空csv,然后写入新数据。
每次运行代码时,这个方法都会在FOR循环中从主体中调用…
public static void csv_output() throws Exception {
FileWriter fw = new FileWriter("output/out.csv", true);
//true refers to append
PrintWriter pw = new PrintWriter(fw, false);
//pw.flush();
//clears the Buffer
if (Auctionhouse.current_epoch == 1) {
pw.print("Epoch");
pw.print(",");
for (int j = 0; j < Run_process.total_Agents; j++) {
pw.print(Chromosome.chromosome.get(j).ID + "_Balance");
pw.print(",");
}
for (int k = 0; k < Stockhouse.total_stocks; k++) {
pw.print(Stockhouse.stockP.get(k).stock_Id);
pw.print(",");
}
}
pw.println();
pw.print(Auctionhouse.current_epoch);
pw.print(",");
for (int i = 0; i < Run_process.total_Agents; i++) {
String ag = Portfolio.Agent_balance.get(i) + "";
pw.print(ag);
pw.print(",");
}
for (int j = 0; j < Stockhouse.total_stocks; j++) {
String pr = Auctionhouse.total_prices.get(Auctionhouse.current_epoch - 1).get(j) + "";
pw.print(pr);
pw.print(",");
}
}
pw.flush();
pw.close();
fw.close();
冲洗不工作。
p。S:我想添加,这样我就可以在每个循环中写入数据。
如果要清空"output/out.csv",只需将FileWriter
的参数更改为false
即可。
FileWriter fw = new FileWriter("output/out.csv", false);
正如FileWriter构造函数的文档中所说,第二个参数指定是否要追加。在你的情况下,如果你想清除数据,你可以简单地传递false
,它将在文件的开头写。您应该在应用程序启动时执行此代码。
在不删除文件的情况下清除文件的内容。如果您实现这段代码,您将需要捕获IOexception
并可能创建一个函数来执行代码,但这应该可以完成。
public static void clearCsv() throws Exception {
FileWriter fw = new FileWriter("output/out.csv", false);
PrintWriter pw = new PrintWriter(fw, false);
pw.flush();
pw.close();
fw.close();
}
据我所知,在进入for循环之前,您希望有一个空的"output/out.csv"文件。所以只要在程序启动时删除该文件-如果它存在的话。
File outFile = new File("output/out.csv");
// delete out file if it exists
if (outFile.exists()) {
System.out.println("Old out.csv file exists. Removing...);
outFile.delete();
}