Skip to content

TheImplementer/file-lines-iterator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

The project is just a small implementation of a Java iterator that iterates over the lines of contained in a text file. The BufferedReader class can be used to easily retrieve the lines in a file using the readLine method, however it doesn't return any information about the number of line-delimiters that have been skipped when reading a line.

The iterator returns a Line object, that contains the content of the read line along with the total amount of characters read. Like the BufferedReader class, it does this using a buffered approach to limit the amount of reads from the disk.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages