Class marimba.io.RAFInputStream
All Packages Class Hierarchy This Package Previous Next Index
Class marimba.io.RAFInputStream
java.lang.Object
|
+----java.io.InputStream
|
+----marimba.io.RAFInputStream
- public class RAFInputStream
- extends InputStream
An output stream class which interfaces to a RandomAccessFile.
This is a way to open a file for appending.
- Version:
- 1.5, 08/14/96
- Author:
- Jonathan Payne
-
RAFInputStream(RandomAccessFile)
-
-
available()
-
-
close()
-
-
read()
-
-
read(byte[])
-
-
read(byte[], int, int)
-
-
skip(long)
-
RAFInputStream
public RAFInputStream(RandomAccessFile in)
read
public int read() throws IOException
- Overrides:
- read in class InputStream
read
public int read(byte b[]) throws IOException
- Overrides:
- read in class InputStream
read
public int read(byte b[],
int off,
int len) throws IOException
- Overrides:
- read in class InputStream
skip
public long skip(long n) throws IOException
- Overrides:
- skip in class InputStream
available
public int available() throws IOException
- Overrides:
- available in class InputStream
close
public void close() throws IOException
- Overrides:
- close in class InputStream
All Packages Class Hierarchy This Package Previous Next Index