![]() |
Quadcap Embeddable Server |
Inheritance diagram for com.quadcap.io.RandomAccessFileInputStream:

Definition at line 53 of file RandomAccessFileInputStream.java.
Public Member Functions | |
| RandomAccessFileInputStream (RandomAccessFile ra) | |
| Construct a new RandomAccessFileInputStream rearang from the specified file. | |
| int | read () throws IOException |
| Read the next byte from this input stream. | |
| int | read (byte[] buf, int offset, int count) throws IOException |
| Read a block of bytes from this input stream. | |
| int | read (byte[] buf) throws IOException |
| Read a block of bytes from this input stream. | |
| int | available () throws IOException |
| Return the number of bytes that can be read without blocking. | |
| void | close () throws IOException |
| Close the stream. | |
| long | skip (long n) throws IOException |
| Skip ahead in the stream. | |
| void | mark (int readLimit) |
| Mark the current position in the input stream. | |
| void | reset () throws IOException |
| Return to the previously marked position in the input stream. | |
| boolean | markSupported () |
| Return true if mark/reset supported (they are.). | |
Package Attributes | |
| long | mark = -1 |
| RandomAccessFile | ra |
|
|
Construct a new RandomAccessFileInputStream rearang from the specified file.
Definition at line 63 of file RandomAccessFileInputStream.java. |
|
|
Return the number of bytes that can be read without blocking.
Definition at line 101 of file RandomAccessFileInputStream.java. References com.quadcap.io.RandomAccessFileInputStream.ra. |
|
|
Close the stream.
Definition at line 108 of file RandomAccessFileInputStream.java. References com.quadcap.io.RandomAccessFileInputStream.ra. |
|
|
Mark the current position in the input stream.
Definition at line 123 of file RandomAccessFileInputStream.java. References com.quadcap.io.RandomAccessFileInputStream.mark, and com.quadcap.io.RandomAccessFileInputStream.ra. |
|
|
Return true if mark/reset supported (they are.).
Definition at line 143 of file RandomAccessFileInputStream.java. |
|
|
Read a block of bytes from this input stream.
Definition at line 92 of file RandomAccessFileInputStream.java. References com.quadcap.io.RandomAccessFileInputStream.ra. |
|
||||||||||||||||
|
Read a block of bytes from this input stream.
Definition at line 82 of file RandomAccessFileInputStream.java. References com.quadcap.io.RandomAccessFileInputStream.ra. |
|
|
Read the next byte from this input stream.
Definition at line 72 of file RandomAccessFileInputStream.java. References com.quadcap.io.RandomAccessFileInputStream.ra. |
|
|
Return to the previously marked position in the input stream.
Definition at line 135 of file RandomAccessFileInputStream.java. References com.quadcap.io.RandomAccessFileInputStream.ra. |
|
|
Skip ahead in the stream.
Definition at line 115 of file RandomAccessFileInputStream.java. References com.quadcap.io.RandomAccessFileInputStream.ra, and com.quadcap.io.RandomAccessFileInputStream.skip(). Referenced by com.quadcap.io.RandomAccessFileInputStream.skip(). |
|
|
Definition at line 54 of file RandomAccessFileInputStream.java. Referenced by com.quadcap.io.RandomAccessFileInputStream.mark(). |
|