码迷,mamicode.com
首页 > 编程语言 > 详细

LineNumberReader:记录行号的流

时间:2015-06-14 21:33:28      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:

import java.io.*;
public class anli
{
	public static void main (String[] args)
	{
		linenumber();   //设置行号和读取行号
	}
	public static void linenumber()throws IOException//这里不需要抛出异常
	{
		linenumberdemo();
	}
	public static void linenumberdemo()throws IOException
	{
		FileReader fr = new FileReader ("demo.txt");//使用他的子类来读取行号
		LineNumberReader lnbr = new LineNumberReader (fr);  //这个是记录行号的作用,把流对象当做参数传递过去
		lnbr.setLineNumber(100);                 //设置从多少开始,不包括
		String str = null ; 
		while ((str = lnbr.readLine())!=null)
		{
			sop(lnbr.getLineNumber()+":::"+str);      //获取行号的方法
		}
	}
	public static void sop (Object obj)
	{
		System.out.println(obj);
	}
}




LineNumberReader:记录行号的流

标签:

原文地址:http://my.oschina.net/u/2356176/blog/466616

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