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