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

Constructor Index

 o RAFInputStream(RandomAccessFile)

Method Index

 o available()
 o close()
 o read()
 o read(byte[])
 o read(byte[], int, int)
 o skip(long)

Constructors

 o RAFInputStream
  public RAFInputStream(RandomAccessFile in)

Methods

 o read
  public int read() throws IOException
Overrides:
read in class InputStream
 o read
  public int read(byte b[]) throws IOException
Overrides:
read in class InputStream
 o read
  public int read(byte b[],
                  int off,
                  int len) throws IOException
Overrides:
read in class InputStream
 o skip
  public long skip(long n) throws IOException
Overrides:
skip in class InputStream
 o available
  public int available() throws IOException
Overrides:
available in class InputStream
 o close
  public void close() throws IOException
Overrides:
close in class InputStream

All Packages  Class Hierarchy  This Package  Previous  Next  Index