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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© RedProtector 中级黑马   /  2015-8-15 10:43  /  441 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 RedProtector 于 2015-8-17 10:12 编辑

如下代码:import java.io.*;

public class FileReaderTest {  

    public static void main(String[] args) throws IOException {  

        FileReader fr = new FileReader("IO流.txt");  

        //第一次读取
        long time = System.currentTimeMillis();  
        readChar(fr);  
        long timereadChar = System.currentTimeMillis();  
        System.out.println("time Read char is  = " + (timereadChar-time));  
         //第二次读取
        long time2 = System.currentTimeMillis();  
        readToBuf(fr);  
        long timeReadBuf = System.currentTimeMillis();  
        System.out.println("time Read to Buf is =  " + (timeReadBuf-time2));
          }


        private static void readChar(FileReader fr) throws IOException {  
                //设每个读取到的字符整数值为ch.  
                int ch = 0;   
                //循环读取字符,直到流的末尾  
                while((ch = fr.read()) != -1){  
                //将读取到的字符,强制转换为 char  
                System.out.print((char) ch);  
                }
                System.out.print("\n");
                }  

    private static void readToBuf(FileReader fr) throws IOException {  
        //定义一个字符缓冲区,用于存放读到的字符。  
        char[] buf = new char[50];  
        //设刚开始读到的字符为0  
        int len = 0 ;  
        //一直循环读取字符到缓冲区中,直到读到流的末尾。  
        while((len = fr.read(buf)) != -1){  
            //将每次读满的缓冲区中的字符,变成字符串打印出来。  
            System.out.println(new String(buf , 0 , len));        
        }                  
    }
}



假设IO流.txt文件里的字符为"abcdefg"
问题:
为何运行结果为:
abcdefg
time Read char is = *
time Read to Buf is= *
而不是:
abcdefg
time Read char is = *
abcdefg
time Read to Buf is= *



4 个回复

倒序浏览
readChar(fr);里这个  System.out.print((char) ch);  循环语句依次输出每次读到的字符  所以有abcdefg
第二个函数没有类似的输出语句,只有输出整体字符串
回复 使用道具 举报
fmi110 发表于 2015-8-15 11:05
readChar(fr);里这个  System.out.print((char) ch);  循环语句依次输出每次读到的字符  所以有abcdefg
第 ...

readChar()和readToBuf()互相注释一个,然后独立运行的时候都能打印出字符串。
为什么两个一起只能打印一次?
回复 使用道具 举报
RedProtector 发表于 2015-8-16 09:48
readChar()和readToBuf()互相注释一个,然后独立运行的时候都能打印出字符串。
为什么两个一起只能打印一 ...

不好意思  误导你了  之前没看仔细
之所以两个同时运行时  只能打印一次是因为第一次打印的时候已经到文件末尾了,所以第二次
再读的时候直接是末尾,没有输出
回复 使用道具 举报
楼上说的好有道理啊!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马