LineNumberReader.readLine

LineNumberReader.readLine

Class Overview | Class Members | This Package | All Packages

Syntax
public String readLine() throws IOException
Returns
A String containing the contents of the line, not including any line-termination characters, or null if the end of the stream has been reached
Description
Read a line of text. A line is considered to be terminated by any one of a line feed ('\n'), a carriage return ('\r'), or a carriage return followed immediately by a linefeed.

Exceptions
IOException If an I/O error occurs
Overrides
readLine in class BufferedReader