As a follow up to this question
Where the idea was to print lines from a file in reverse without using an explicit data structure I have an implementation question. Recursion was suggested and here's what I have:
import java.io.*;
public class ReverseLines {
public ReverseLines() {
}
public void reverse(File fileToReverse, int n) {
try {
FileReader fr = new FileReader(fileToReverse);
BufferedReader br = new BufferedReader(fr);
String line = br.readLine();
if (n > 0) {
reverse(fileToReverse, n - 1);
}
System.out.println(line);
} catch (Exception e) {
System.out.println(e);
}
}
public static void main(String[] argv) {
ReverseLines testReverse = new ReverseLines();
File test = new File("money.txt");
testReverse.reverse(test, 3);
}
}
This code prints the first line of money.txt 3 times instead of the first three lines in reverse. Frankly (and naively) I don't see how the recursion is supposed to work if just readLine(); is used.
Help is appreciated...
Thanks