Java org.apache.commons.io.input ReversedLinesFileReader fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.io.input ReversedLinesFileReader fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.io.input ReversedLinesFileReader.

The text is from its open source code.

Subclass

org.apache.commons.io.input.ReversedLinesFileReader has subclasses.
Click this link to see all its subclasses.

Constructor

ReversedLinesFileReader(final File file)
Creates a ReversedLinesFileReader with default block size of 4KB and the platform's default encoding.
ReversedLinesFileReader(final File file, final int blockSize, final Charset encoding)
Creates a ReversedLinesFileReader with the given block size and encoding.
ReversedLinesFileReader(final File file, final int blockSize, final String encoding)
Creates a ReversedLinesFileReader with the given block size and encoding.

Method

voidclose()
Closes underlying resources.
StringreadLine()
Returns the lines of the file from bottom to top.