码迷,mamicode.com
首页 > 其他好文 > 详细

字符流缓冲区原理之装饰模式

时间:2018-01-25 14:09:29      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:ret   buffered   auth   line   reader   port   nts   错误   main   

import java.io.FileReader;
import java.io.IOException;
import java.io.Reader;

/**

  • 模拟字符流缓冲区 readline()
  • 装饰模式
  • @author WangShuang
  • */
    public class Demo {

    public static void main(String[] args) {
    MyBufferedReader my = null;
    try {
    FileReader fr = new FileReader("c:\字符流缓冲区.txt");
    my = new MyBufferedReader(fr);
    String buff = null;
    while((buff = my.myReadLine())!=null){
    System.out.println(buff);
    }
    } catch (Exception e) {
    throw new RuntimeException("读取错误");
    }finally {
    try {
    if(my!=null)
    my.close();
    } catch (IOException e) {
    e.printStackTrace();
    }
    }

    }
    }
    class MyBufferedReader extends Reader {
    Reader in = null;
    public MyBufferedReader(Reader in) {
    this.in = in;
    }
    //增强的方法
    public String myReadLine() throws IOException{
    StringBuffer sb = new StringBuffer();
    int ch = 0;
    while((ch = in.read())!=-1){
    if(ch == ‘\r‘)
    continue;
    if(ch== ‘\n‘)
    return sb.toString();
    else
    sb.append((char)ch);
    }
    if(sb.length()!=0){
    return sb.toString();
    }
    return null;br/>}
    @Override
    public int read(char[] cbuf, int off, int len) throws IOException {
    return in.read(cbuf, off, len);
    br/>}
    @Override
    public void close() throws IOException {
    in.close();

    }

}

字符流缓冲区原理之装饰模式

标签:ret   buffered   auth   line   reader   port   nts   错误   main   

原文地址:http://blog.51cto.com/13579086/2064987

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!