A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© sd110572 金牌黑马   /  2013-12-10 16:09  /  1022 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 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. }  
复制代码

评分

参与人数 1技术分 +1 收起 理由
乔兵 + 1

查看全部评分

1 个回复

倒序浏览
我的见解是问题不是在缓冲区上,缓冲区是能够很好的减少硬盘的读写次数,提高效率和性能的东西。
楼主的代码问题是出于输出流还未将数据刷新进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. }  
复制代码

评分

参与人数 1技术分 +1 收起 理由
简★零度 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马