| java.lang.Object java.io.InputStream org.w3c.www.http.ContentLengthInputStream
ContentLengthInputStream | public class ContentLengthInputStream extends InputStream (Code) | | The content length input stream is used internally to return entity bodies.
|
length | protected int length(Code) | | The number of bytes readable from the above stream.
|
marklength | protected int marklength(Code) | | The place of a single pending mark.
|
ContentLengthInputStream | public ContentLengthInputStream(InputStream in, int length)(Code) | | Builds a new content-length input stream.
This stream acts as a normal stream except that it will return
an end of file, after count bytes have been delivered.
|
finalize | public void finalize()(Code) | | Make sure the stream is ultimately closed !
|
mark | public void mark(int readlimit)(Code) | | |
markSupported | public boolean markSupported()(Code) | | do we support mark() ?
it depends on the underlying InputStream
a boolean, true if mark is supported |
|
|