赞
踩
字节缓冲流缓存的目的:输出流会暂存缓存区,会等到关闭或刷新才会将数据写入到文件,(推荐使用)
解决在写入文件操作时,频繁的操作文件所带来的性能降低的问题.
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(); } }
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(); } }
本章概述了java中字符输入/输出缓冲流的使用,该缓冲流相当于字节输入/输出流的升级版,在之后处理文件时,需要使用到字符输入/输出流时,可以给选择套一个缓冲流来继续实现,以达到性能的提升;
有哪里不足或者有更好的建议,欢迎留言吐槽,有哪里不懂的小伙伴,可以私信我,我会一一答复,感谢认可,感谢支持!
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。