@NotThreadSafe public class ChunkedEncodingInputStream extends FilterInputStream
aws-chunked
encoded input stream into its original form.
For more informaiton about the aws-chunked encoding type, see the AWS S3 REST API reference
https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-streaming.htmlin
Modifier | Constructor and Description |
---|---|
protected |
ChunkedEncodingInputStream(InputStream in)
Creates a
FilterInputStream
by assigning the argument in
to the field this.in so as
to remember it for later use. |
Modifier and Type | Method and Description |
---|---|
int |
read() |
int |
read(byte[] b,
int off,
int len) |
available, close, mark, markSupported, read, reset, skip
protected ChunkedEncodingInputStream(InputStream in)
FilterInputStream
by assigning the argument in
to the field this.in
so as
to remember it for later use.in
- the underlying input stream, or null
if
this instance is to be created without an underlying stream.public int read() throws IOException
read
in class FilterInputStream
IOException
public int read(byte[] b, int off, int len) throws IOException
read
in class FilterInputStream
IOException
Copyright © 2023. All Rights Reserved.