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
-
DecoderStream(InputStream)
- Constructor
-
available()
- How many character remain
-
main(String[])
- Test program.
-
read()
- Read a character.
-
read(byte[], int, int)
- Read a buffer
DecoderStream
public DecoderStream(InputStream in)
- Constructor
read
public int read() throws IOException
- Read a character.
- Overrides:
- read in class FilterInputStream
read
public int read(byte buf[],
int off,
int len) throws IOException
- Read a buffer
- Overrides:
- read in class FilterInputStream
available
public int available() throws IOException
- How many character remain
- Overrides:
- available in class FilterInputStream
main
public static void main(String argv[])
- Test program.
All Packages Class Hierarchy This Package Previous Next Index