当前位置:   article > 正文

java中的字节缓冲流[52]_bufferedoutputstream 缓冲区多大合适

bufferedoutputstream 缓冲区多大合适

java中的字节缓冲流[52]




一、字节缓冲流概念

字节缓冲流缓存的目的:输出流会暂存缓存区,会等到关闭或刷新才会将数据写入到文件,(推荐使用)
解决在写入文件操作时,频繁的操作文件所带来的性能降低的问题.

BufferedOutputStream:内部默认的缓存大小为8KB,每次写入式存储到byte数组中,当数组存满时,会把数组中的数据写入文件.并且缓存下标归零;

二、字节输入缓冲流

private static void BufferedIn(){
    File file=new File("D:/files/test1.txt");
    //jdk1.7新特性:直接try里创建对象,可以帮我们自动关闭流,创建字节输入缓冲流对象,创建匿名字节输入流对象
    try(BufferedInputStream bs=new BufferedInputStream(new FileInputStream(file))) {
        byte[] bytes=new byte[1024];
        int len=-1;
        StringBuilder sb=new StringBuilder();
        while ((len=bs.read(bytes))!=-1){
            sb.append(new String(bytes,0,len));
        }
        System.out.println(sb);
        //关闭字节输入缓冲流也会关闭字节输入流对象
        bs.close();
        System.out.println(sb);
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

三.字节输出缓冲流

private static void BufferedOut(){
    //指定文件
    File file=new File("D:/files/test1.txt");
    try {
        //创建字节输出流对象
        OutputStream op=new FileOutputStream(file,true);
        //创建字节输出缓冲流对象
        BufferedOutputStream bs=new BufferedOutputStream(op);
        String ss="字节输出缓冲流\r\n";
        //写入缓冲区,如果是true追加,则不会清空文件内容,若是默认覆盖,期间会清空要写入的文件里面的内容
        bs.write(ss.getBytes());
        String s2="字节输出缓冲流2";
        //写一个延迟
        Thread.sleep(10000);
        bs.write(s2.getBytes());
        System.out.println("ok");
        //只有在缓冲区满后或刷新或关闭,才会真正将字节内容写入文件
        bs.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

四.小结

本章概述了java中字符输入/输出缓冲流的使用,该缓冲流相当于字节输入/输出流的升级版,在之后处理文件时,需要使用到字符输入/输出流时,可以给选择套一个缓冲流来继续实现,以达到性能的提升;
有哪里不足或者有更好的建议,欢迎留言吐槽,有哪里不懂的小伙伴,可以私信我,我会一一答复,感谢认可,感谢支持!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/146996
推荐阅读
相关标签
  

闽ICP备14008679号