首页 > 其他 > 详细

实现BufferedReader方法

时间:2019-11-03 21:59:05      阅读:94      评论:0      收藏:0      [点我收藏+]
package privateclass;

import java.io.Closeable;
import java.io.FileReader;
import java.io.IOException;
import java.util.concurrent.CountDownLatch;

public class MyBufferedReader {

	private FileReader reader;
	private int count = 0;
	private int pos = 0;
	private char []buf = new char[1024];
	
	public MyBufferedReader(FileReader reader) {
		this.reader = reader;
	}
	public int Myread() throws IOException {
		if(count == 0)
		{
			count = reader.read(buf);
			pos = 0;
		}
		if(count < 0)return -1;
		char ch = buf[pos];
		pos++;
		count--;
		return ch;
	}
	public String Myreadline() throws IOException {
		StringBuilder s = new StringBuilder();
		int ch = 0;
		while((ch = Myread()) != -1)
		{
			if(ch == ‘\r‘)continue;
			if(ch == ‘\n‘)return s.toString();
			s.append((char)ch);
		}
		/*
		 * 在这里是因为怕读不到回车
		 */
		if(s.length() != 0)
		return s.toString();
		return null;
	}
	public void close() throws IOException {
		reader.close();
	}
}

  

实现BufferedReader方法

原文:https://www.cnblogs.com/WINDZLY/p/11788779.html

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