Method Summary |
|
final public boolean | canSeekBackwards() Returns true since seeking backwards is supported. |
final public void | close() Forwards the request to the real File . |
final public long | getFilePointer() Returns the current offset in this stream. |
final public synchronized void | mark(int readLimit) Marks the current file position for later return using
the reset() method. |
public boolean | markSupported() Returns true since marking is supported. |
final public int | read() Forwards the request to the real File . |
final public int | read(byte[] b, int off, int len) Forwards the request to the real File . |
final public synchronized void | reset() Returns the file position to its position at the time of
the immediately previous call to the mark()
method. |
final public void | seek(long pos) |
final public int | skip(int n) |