IO流8 --- 使用FileReader和FileWriter实现文本文件的复制 --- 技术搬运工(尚硅谷)

@Test
public void test4(){
    FileReader fr = null;
    FileWriter fw = null;
    try {
        fr = new FileReader("hello.txt");
        fw = new FileWriter("hello1.txt");

        char[] cbuf = new char[5];
        int len;
        while ((len = fr.read(cbuf)) != -1){
            fw.write(cbuf, 0, len);
        }
    } catch (IOException e) {
        e.printStackTrace();
    }finally {
        if (fw != null){
            try {
                fw.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        if (fr != null){
            try {
                fr.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

  

上一篇:javascript-W3C / PhoneGap FileReader-如何使用?


下一篇:javascript-如何使用此代码在单片电子书阅读器中创建下一个和上一个按钮?