Uses of Class org.apache.commons.io.LineIterator

Uses in package org.apache.commons.io

Methods with parameter type org.apache.commons.io.LineIterator

void
Closes the iterator, handling null and ignoring exceptions.

Methods with return type org.apache.commons.io.LineIterator

LineIterator
Return an Iterator for the lines in a File using the default encoding for the VM.
LineIterator
FileUtils.lineIterator(File file, String encoding)
Return an Iterator for the lines in a File.
LineIterator
IOUtils.lineIterator(InputStream input, String encoding)
Return an Iterator for the lines in an InputStream, using the character encoding specified (or default encoding if null).
LineIterator
IOUtils.lineIterator(Reader reader)
Return an Iterator for the lines in a Reader.