黑马程序员技术交流社区

标题: java流缓冲区 [打印本页]

作者: sd110572    时间: 2013-12-10 16:09
标题: java流缓冲区
本帖最后由 sd110572 于 2013-12-10 20:12 编辑

听着张孝祥老师关于缓冲区知识的课,发现还是有一些没有掌握,动手试了一下,果然发现了问题。
先讲一下关于java缓冲区的知识,应用程序和IO设备之间存在一个缓冲区,一般流是没有缓冲区的,但是如果存在缓冲区,就会发现很大的问题。
错误代码如下:为了确保问题发生,我使用了BufferedOutputStream,使得手动构造出了一个缓冲区。
  1. import java.io.*;  
  2. public class Test {  
  3.     public static void main(String[] args) throws Exception{  
  4.         DataOutputStream out = new DataOutputStream(  
  5.                             new BufferedOutputStream(  
  6.                             new FileOutputStream("1.txt")));  
  7.         out.writeChars("hello");  
  8.         FileInputStream in = new FileInputStream("1.txt");  
  9.         int len = in.available();  
  10.         byte[] b = new byte[len];  
  11.         int actlen = in.read(b);  
  12.         String str = new String(b);  
  13.         System.out.println(str);  
  14.          
  15.     }     
  16. }  
复制代码

作者: Kyle    时间: 2013-12-10 20:09
我的见解是问题不是在缓冲区上,缓冲区是能够很好的减少硬盘的读写次数,提高效率和性能的东西。
楼主的代码问题是出于输出流还未将数据刷新进1.txt,就使用了输入流去读取1.txt的内容,这会导致输入流无法读取到编辑者想要他所获取的数据。
解决的方案是加上流的刷新和关闭,代码如下:
  1. import java.io.*;  
  2. public class Test {  
  3.     public static void main(String[] args) throws Exception{  
  4.         DataOutputStream out = new DataOutputStream(  
  5.                             new BufferedOutputStream(  
  6.                             new FileOutputStream("1.txt")));  
  7.         out.writeChars("hello");  
  8.         out.flush();
  9.         FileInputStream in = new FileInputStream("1.txt");  
  10.         int len = in.available();  
  11.         byte[] b = new byte[len];  
  12.         in.read(b);  
  13.         String str = new String(b);  
  14.         System.out.println(str);  
  15.         in.close();
  16.         out.close();
  17.     }     
  18. }  
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2