java printwriter写文件,PrintWriter不写入文件(Java)

I am writing a kind of a cash machine program that will output the data into a file (Yes, I know its not in English, but that's not the point) and I am experiencing an error.

When I try to use PrintWriter it doesn't work, I don't know why.

public void writeFooter(List list) throws Exception{

int amountSold = 0;

int amountNotSold = 0;

int moneyRecieved = 0;

openStreams();

printer.println("Проданные товары: ");

for(int i = 0; i <= list.size() - 1;i++){

if(list.get(i).isSold()){

writeToFile(list.get(i), dir);

amountSold++;

moneyRecieved += list.get(i).getPrice();

}

}

printer.println();

printer.println("Не проданные товары: ");

for(int i = 0; i <= list.size() - 1; i ++){

if(!list.get(i).isSold()){

writeToFile(list.get(i), dir);

amountNotSold++;

}

}

printer.println();

printer.println("Всего: "+list.size());

printer.println("Кол-во проданно: "+ amountSold);

printer.println("Кол-во не проданно: "+ amountNotSold);

printer.println("Выручка: "+ moneyRecieved);

printer.flush();

System.out.print(printer.checkError());

closeStreams();

}

private void openStreams() throws IOException{

writer = new FileWriter(file,true);

buffer = new BufferedWriter(writer);

printer = new PrintWriter(buffer);

}

private void closeStreams() throws IOException{

printer.flush();

printer.close();

buffer.close();

writer.close();

}

public void writeToFile(Purchase purchase,String dir) throws Exception{

file = new File(dir);

if(!file.exists()){

file.createNewFile();

}

openStreams();

printer.println(purchase.getName() + " По цене: " + purchase.getPrice() + "руб");

closeStreams();

}

The for loops work, but the lines. It really confuses me!

I have tried checkError() and I get true, but that still doesn't help.

Can someone please explain what am I doing wrong?

解决方案

Why are you opening and closing stream in your writeToFile call ?

Shouldn't you open the streams in writeFooter() before the for loop, put a try block around the writing code, and close them in a finally section .

The way I see it,

You've openedstream first in the writeFooter, the you write printer.println("Проданные товары: ");, and then your for loop's first iteration calls writeToFile, will again open the non-closed stream, that will surely overwrite the first printed line.

Opening and closing File for writing one line is way too inefficient.

You need something like

writeFooter(...) {

try {

openStreams();

writeToFile();

} finally {

closeStream();

}

}

Where writeToFile simply writes , doesn't open or close stream, and closeStream safely closes the streams, i.e. check for null etc.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值