Package org.apache.http.client.entity
Class DeflateInputStream
java.lang.Object
java.io.InputStream
org.apache.http.client.entity.DeflateInputStream
- All Implemented Interfaces:
Closeable
,AutoCloseable
Deflate input stream. This class includes logic needed for various Rfc's in order
to reasonably implement the "deflate" compression style.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
Get available.void
close()
Close.void
mark
(int readLimit) Mark.boolean
Check if mark is supported.int
read()
Read a byte.int
read
(byte[] b) Read lots of bytes.int
read
(byte[] b, int off, int len) Read lots of specific bytes.void
reset()
Reset.long
skip
(long n) SkipMethods inherited from class java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, skipNBytes, transferTo
-
Constructor Details
-
DeflateInputStream
- Throws:
IOException
-
-
Method Details
-
read
Read a byte.- Specified by:
read
in classInputStream
- Throws:
IOException
-
read
Read lots of bytes.- Overrides:
read
in classInputStream
- Throws:
IOException
-
read
Read lots of specific bytes.- Overrides:
read
in classInputStream
- Throws:
IOException
-
skip
Skip- Overrides:
skip
in classInputStream
- Throws:
IOException
-
available
Get available.- Overrides:
available
in classInputStream
- Throws:
IOException
-
mark
public void mark(int readLimit) Mark.- Overrides:
mark
in classInputStream
-
reset
Reset.- Overrides:
reset
in classInputStream
- Throws:
IOException
-
markSupported
public boolean markSupported()Check if mark is supported.- Overrides:
markSupported
in classInputStream
-
close
Close.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
-