• java读写文件小心缓存数组


    一般我们读写文件的时候都是这么写的,看着没问题哈。
     
    public static void main(String[] args) throws Exception {
     
    FileInputStream fileInput = new FileInputStream("e://test1.txt");
    FileOutputStream fileOutput = new FileOutputStream("e://test2.txt");
     
    byte[] buffer = new byte[4];
    while(fileInput.read(buffer) != -1){
    fileOutput.write(buffer);
    System.out.println(new String(buffer));
    }
     
    fileInput.close();
    fileOutput.close();
    System.out.println("complete");
     
    }
     
     
     
    写的文件多了234.。。。这是为什么呢。。。
     
     
     
    text1.txt里面的内容为“中国12345”,一共占9个字节。
    byte[]数组长4个字节,循环第三次的时候只读取一个字节,但是第二次循环遗留下来的数据
    还在数组里面,并没有清空。
     
     
     
    所以正确的写法如下:
    byte要初始化一下
     
    public static void main(String[] args) throws Exception {
     
    FileInputStream fileInput = new FileInputStream("e://test1.txt");
    FileOutputStream fileOutput = new FileOutputStream("e://test2.txt");
     
    byte[] buffer = new byte[4];
    while(fileInput.read(buffer) != -1){
    fileOutput.write(buffer);
    System.out.println(new String(buffer));
    buffer = new byte[4];
    }
     
    fileInput.close();
    fileOutput.close();
    System.out.println("complete");
     
    }
     
     
     
    后来发现这样更好:
    public static void transFile() throws Exception{
     
    FileInputStream fileInput = new FileInputStream("e://test1.txt");
    FileOutputStream fileOutput = new FileOutputStream("e://test2.txt");
     
    byte[] buffer = new byte[4];
    int count = 0;
    while((count = fileInput.read(buffer)) != -1){
    fileOutput.write(buffer,0,count);
    }
     
    fileInput.close();
    fileOutput.close();
    System.out.println("complete");
    }
  • 相关阅读:
    拷贝构造函数的参数为什么必须使用引用类型(避免无限递归拷贝,但其实编译器已经强制要求了)
    MAKE gnu
    设计模式之观察者模式(Observable与Observer)
    WCF从零学习之设计和实现服务协定2
    CLR_Via_C#学习笔记之枚举
    事件与动画
    Shell—学习之心得
    Asp.net MVC中提交集合对象,实现Model绑定
    一个23岁大学生的开源项目 谷歌要竖中指了
    C++中的虚函数总结
  • 原文地址:https://www.cnblogs.com/zhanyd/p/6186038.html
Copyright © 2020-2023  润新知