Java BufferedReader readLine()方法

java.io.BufferedReader.readline() 用于读取一行文本。遇到换行符或回车符readLine()方法会终止读取。

1 语法

public String readline()

2 参数

3 返回值

一个字符串,其中包含行的内容,不包含任何行终止符;如果已到达流的末尾,则为null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.BufferedReader.readline()方法的例子
 */
import java.io.*;

public class Demo {
    public static void main(String[] args) throws Exception {
        String thisLine = null;

        try {
            // open input stream test.txt for reading purpose.
            BufferedReader br = new BufferedReader(new FileReader("d:/test.txt"));

            while ((thisLine = br.readLine()) != null) {
                System.out.println(thisLine);
            }
        } catch(Exception e) {
            e.printStackTrace();
        }
    }
}

假设test.txt内容如下:

ABCDE

输出结果为:

ABCDE

热门文章

优秀文章