String readLine int read(char cbuf, int off, int len) boolean ready 描述 java.io.BufferedReader.readline() 方法读一个文本行。一条线被认为是由换行符('\ n'),回车符('\ r')或回车符中的任何一个终止,后面紧跟换行符。 声明 以下是java.io.BufferedReader.readline()方法的声明。 public String readline() 参数 NA 返回值 包含行内容的String,不包括任何行终止字符;如果已到达流的末尾,则为null。 异常 IOException − 如果发生I / O错误。 实例 以下示例显示了java.io.BufferedReader.readline()方法的用法。 package com.tutorialspoint; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.InputStream; import java.io.InputStreamReader; public class BufferedReaderDemo { public static void main(String[] args) throws Exception { String thisLine = null; try { // open input stream test.txt for reading purpose. BufferedReader br = new BufferedReader("c:/test.txt"); while ((thisLine = br.readLine()) != null) { System.out.println(thisLine); } } catch(Exception e) { e.printStackTrace(); } } } 假设我们有一个文本文件c:/test.txt,它具有以下内容。此文件将用作示例程序的输入 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz 让我们编译并运行上面的程序,这将产生以下结果 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz int read(char cbuf, int off, int len) boolean ready