当前位置:  开发笔记 > 编程语言 > 正文

为什么这段代码不起作用?

如何解决《为什么这段代码不起作用?》经验,为你挑选了1个好方法。



1> Dalija Prasn..:

您应该按顺序创建文件阅读器和编写器,而不是一次创建.

FileReader fr = new FileReader(f);
FileWriter fw = new FileWriter(f); // here you are deleting your file content before you had chance to read from it

你应该做以下事情:

public static void main(String[] args) throws Exception{

    File f = new File("abc.txt");
    FileReader fr = new FileReader(f);
    int count = 0;
    while(fr.read()!=-1){
        count++;
    }
    fr.close();

    FileWriter fw = new FileWriter(f);
    while(count-->0){
        fw.write('*');
    }
    fw.flush();     
    fw.close();
}


因为,如果文件已经存在,FileWriter将清除文件,准备文件以写入内容.还有另一个构造函数告诉FileWriter打开文件以进行追加.
推荐阅读
放ch养奶牛
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有