All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.ginf.delivery.HTTP.HTTPDecoder

java.lang.Object
   |
   +----java.io.InputStream
           |
           +----java.io.FilterInputStream
                   |
                   +----org.ginf.delivery.HTTP.HTTPDecoder

public class HTTPDecoder
extends FilterInputStream
Decodes an escaped stream.


Constructor Index

 o HTTPDecoder(InputStream)

Method Index

 o close()
Closes this input stream and releases any system resources associated with the stream.
 o markSupported()
Tell whether this stream supports the mark() operation.
 o read()
Read a single character.
 o read(byte[], int, int)
Read characters into a portion of an array.

Constructors

 o HTTPDecoder
 public HTTPDecoder(InputStream in)

Methods

 o read
 public int read() throws IOException
Read a single character.

Throws: IOException
If an I/O error occurs
Overrides:
read in class FilterInputStream
 o read
 public int read(byte cbuf[],
                 int off,
                 int len) throws IOException
Read characters into a portion of an array.

Throws: IOException
If an I/O error occurs
Overrides:
read in class FilterInputStream
 o markSupported
 public boolean markSupported()
Tell whether this stream supports the mark() operation.

Overrides:
markSupported in class FilterInputStream
 o close
 public void close() throws IOException
Closes this input stream and releases any system resources associated with the stream. The close method of FilterInputStream calls the close method of its underlying input stream.

Throws: IOException
if an I/O error occurs.
Overrides:
close in class FilterInputStream
See Also:
in

All Packages  Class Hierarchy  This Package  Previous  Next  Index