| java.lang.Object java.io.InputStream org.w3c.www.http.ChunkedInputStream
ChunkedInputStream | public class ChunkedInputStream extends InputStream (Code) | | A Stream that parses and present chunk encoded data.
This stream should only be used on top of a buffered input stream, it might
be very inefficient otherwise.
Chunk encoding is defined in version 1.1 of the HTTP specification.
|
Method Summary | |
public int | available() | public void | close() | public void | finalize() | protected int | nextChunk(boolean skipCRLF) Read in next chunk description. | public int | read() | public int | read(byte b, int off, int len) | public long | skip(long n) |
ahead | protected int ahead(Code) | | |
eof | protected boolean eof(Code) | | |
inited | protected boolean inited(Code) | | |
isahead | protected boolean isahead(Code) | | |
finalize | public void finalize()(Code) | | Make sure the stream is ultimately closed !
|
nextChunk | protected int nextChunk(boolean skipCRLF) throws IOException(Code) | | Read in next chunk description.
Sets the eof flag to true when reached.
The length of next incomming chunk of data. |
|
|