I am trying to implement a simple log reader and for that I looking for a java framework (e.g. apache commons io) which does the following -
- reads a text file line by line
- provides a paging functionality - i.e. I should be able to mention the number of lines I need to read from file + get the lines from the next page start - say 50th line to 100 th line
Is there any standard framework which does this ? (dont want to reinvent the wheel here)