Pager(int lines, Reader in, Writer out)Construct an object which will copy one pages worth of lines
at a time from the input to the
the output.
No attempt is made under any circumstances to close the input
or output.
this.in = new BufferedReader(in);
this.out = new BufferedWriter(out);
pageLength = lines;
nextLine();
|