Java.io.LineNumberReader.getLineNumber() Method
Advertisements
Description
The java.io.LineNumberReader.getLineNumber() method gets the current line number.
Declaration
Following is the declaration for java.io.LineNumberReader.getLineNumber() method:
public int getLineNumber()
Parameters
NA
Return Value
The method returns the current line number.
Exception
NA
Example
The following example shows the usage of java.io.LineNumberReader.getLineNumber() method.
package com.tutorialspoint;
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;
int i;
try{
// create new reader
fr = new FileReader("C:/test.txt");
lnr = new LineNumberReader(fr);
// sets the current line number
lnr.setLineNumber(100);
// get the current line number
i=lnr.getLineNumber();
// print the current line number
System.out.print("Current line number: "+i);
}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();
}
}
}
Assuming we have a text file c:/test.txt, which has the following content. This file will be used as an input for our example program:
ABCDE
Let us compile and run the above program, this will produce the following result:
Current line number: 100