首页 > 其他 > 详细

字节流缓存

时间:2016-01-06 17:25:41      阅读:259      评论:0      收藏:0      [点我收藏+]
import java.io.*;
class MyBufferedInputStream{
    
    private InputStream in;
    private byte[] buf = byte[1024*4];
    private int pos = 0,count = 0;//指针,计数器
    
    MyBufferedInputStream(InputStream in)
    {
            this.in=in;
    }    
    public int myRead()
    {
        if(count==0){
            count = in.read(buf);//读取字符流,存入数组
            if(count<0)            //结尾
                return -1;
            pos=0;
            byte b= buf[pos];
            count--;
            pos++;
            return b&0xff;
        }else if (count>0){
            byte b= buf[pos];
            count--;
            pos++;
            return b&0xff;//避免文件中连续八个1,返回后为-1
        }
        return -1;
    }
    public void myClose()throws IOException
    {
        in.close();
    }
}

利用数组,模拟字符流缓冲区

字节流缓存

原文:http://www.cnblogs.com/lovedaydream/p/5106205.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!