Java.io.LineNumberReader.readLine()方法实例
java.io.LineNumberReader.readLine() 方法读取一行文本。
声明
以下是java.io.LineNumberReader.readLine()方法的声明:
public String readLine()
参数
-
NA
返回值
该方法返回一个包含该行的内容,不包含任何行终止字符,或一个空字符串,如果已到达流的末尾。
异常
-
IOException -- 如果发生I/O错误
例子
下面的示例演示java.io.LineNumberReader.readLine()方法的用法。
package com.yiibai; import java.io.FileReader; import java.io.IOException; import java.io.LineNumberReader; public class LineNumberReaderDemo { public static void main(String[] args) throws IOException { FileReader fr = null; LineNumberReader lnr = null; String str; int i; try{ // create new reader fr = new FileReader("C:/test.txt"); lnr = new LineNumberReader(fr); // read lines till the end of the stream while((str=lnr.readLine())!=null) { i=lnr.getLineNumber(); System.out.print("("+i+")"); // prints string System.out.println(str); } }catch(Exception e){ // if any error occurs e.printStackTrace(); }finally{ // closes the stream and releases system resources if(fr!=null) fr.close(); if(lnr!=null) lnr.close(); } } }
假设我们有一个文本文件c:/ test.txt,它具有以下内容。该文件将被用作输入到我们的示例程序:
ABCDE
让我们编译和运行上面的程序,这将产生以下结果:
(1)ABCDE (2)FGHIJ (3)KLMNO (4)PQRST (5)UVWXY (6)z