Package de.schlichtherle.io.rof

Provides random read only access to files (as opposed to the random read/write access provided by RandomAccessFile).

See:
          Description

Interface Summary
ReadOnlyFile A minimal interface to allow random read only access to a file.
 

Class Summary
AbstractReadOnlyFile A base class for ReadOnlyFile implementations which implements the common boilerplate.
BufferedReadOnlyFile A ReadOnlyFile implementation which provides buffered random read only access to another ReadOnlyFile.
ChannelReadOnlyFile A ReadOnlyFile implementation using file channels.
FastReadOnlyFile Deprecated. Depending on the implementation of the J2SE API, this class most likely does not provide any performance improvement.
FilterReadOnlyFile A base class for any class which wants to decorate a ReadOnlyFile.
MemoryMappedReadOnlyFile Deprecated. This class does not reliably work on the Windows platform, and hence its not used in TrueZIP.
ReadOnlyFileInputStream An adapter class turning a provided ReadOnlyFile into an InputStream.
SimpleReadOnlyFile A ReadOnlyFile implementation using a RandomAccessFile.
 

Package de.schlichtherle.io.rof Description

Provides random read only access to files (as opposed to the random read/write access provided by RandomAccessFile).