
Hi,
I need to read a file content from its nth line onwards till end. How can i implement it in java.
Regards, Chinnu

Hi Friend,
Try the following code:
import java.io.*;
import java.util.*;
public class ReadNthLineToEnd {
public static void main(String[] args) {
StringBuffer buffer=new StringBuffer();
String line = "";
int lineNo;
Scanner input=new Scanner(System.in);
System.out.print("Enter Line Number: ");
int no=input.nextInt();
try {
LineNumberReader ln = new LineNumberReader(new FileReader("C:/hello.txt"));
int count = 0;
while (ln.readLine() != null){
count++;
}
ln.close();
FileReader fr = new FileReader("C:/hello.txt");
BufferedReader br = new BufferedReader(fr);
for (lineNo = 1; lineNo <= count; lineNo++) {
if(lineNo==no){
for (lineNo = no; lineNo <= count; lineNo++) {
buffer.append(br.readLine());
buffer.append("\n");
}
}
else
br.readLine();
}
} catch (IOException e) {
e.printStackTrace();
}
System.out.println(buffer.toString());
}
}
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.