Class marimba.io.DecoderStream
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class marimba.io.DecoderStream

java.lang.Object
   |
   +----java.io.InputStream
           |
           +----java.io.FilterInputStream
                   |
                   +----marimba.io.DecoderStream

public class DecoderStream
extends FilterInputStream
A simple stream to decode a base64-like stream into a binary stream.
Version:
1.8, 10/30/96
Author:
Arthur van Hoff

Constructor Index

 o DecoderStream(InputStream)
Constructor

Method Index

 o available()
How many character remain
 o main(String[])
Test program.
 o read()
Read a character.
 o read(byte[], int, int)
Read a buffer

Constructors

 o DecoderStream
  public DecoderStream(InputStream in)
Constructor

Methods

 o read
  public int read() throws IOException
Read a character.
Overrides:
read in class FilterInputStream
 o read
  public int read(byte buf[],
                  int off,
                  int len) throws IOException
Read a buffer
Overrides:
read in class FilterInputStream
 o available
  public int available() throws IOException
How many character remain
Overrides:
available in class FilterInputStream
 o main
  public static void main(String argv[])
Test program.

All Packages  Class Hierarchy  This Package  Previous  Next  Index