Wraps a RandomAccessFile to provide an InputStream interface. Closing the input stream does not actually close the underlying file, so it is safe to pass this to clients that expect a normal InputStream.
This class wraps a RandomAccessFile into a usable InputStream which supports random re-position. Re-positioning is done by using seek() on the RandomAccessFile object. (@see RandomAccessFile#seek())
@author nicl
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.