LineNumberReader read() in Java

read(): This method is available in the java.io.LineNumberReader class of Java.

Syntax:

int java.io.LineNumberReader.read() throws IOException

This method read a single character. Line terminators are compressed into a single newline ('\n') characters.

Whenever a line terminator is read the current line number is incremented.

Parameters: NA

Returns: The character read, or -1 if the end of the stream has been reached.

Throws:

IOException - If an I/O error occurs

Approach

Java

import java.io.IOException;
import java.io.LineNumberReader;
import java.io.Reader;
import java.io.StringReader;

public class LineNumberReaderread {
    public static void main(String[] args) {

        Reader in = new StringReader("Hello");
        LineNumberReader lineNumberReader = new LineNumberReader(in);

        try {
            System.out.println((char)lineNumberReader.read());
        } catch (IOException e) {
            System.out.println("IOException occurs");
        }
    }
}

Output:

H


Some other methods of LineNumberReader

getLineNumber()This method gets the current line number.

LineNumberReader(Reader)This method creates a new line-numbering reader, using the default input buffer size.

LineNumberReader(Reader, int)This method creates a new line-numbering reader, reading characters into a buffer of the given size.

mark(int)This method marks the present position in the stream.

read(char[], int, int)This method read characters into a portion of an array.

readLine()This method read a line of text.

reset()This method resets the stream to the most recent mark.

setLineNumber(int)This method sets the current line number.

skip(long)This method skips characters.

No comments:

Post a Comment