public class ChecksumVerifyingInputStream extends FilterInputStream
in| Constructor and Description |
|---|
ChecksumVerifyingInputStream(Checksum checksum,
InputStream in,
long size,
long expectedChecksum)
Constructs a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
long |
getBytesRemaining() |
int |
read()
Reads a single byte from the stream
|
int |
read(byte[] b,
int off,
int len)
Reads from the stream into a byte array.
|
long |
skip(long n) |
available, close, mark, markSupported, read, resetpublic ChecksumVerifyingInputStream(Checksum checksum, InputStream in, long size, long expectedChecksum)
checksum - Checksum implementation.in - the stream to wrapsize - the of the stream's contentexpectedChecksum - the expected checksumpublic long getBytesRemaining()
public int read()
throws IOException
read in class FilterInputStreamIOException - if the underlying stream throws or the
stream is exhausted and the Checksum doesn't match the expected
valuepublic int read(byte[] b,
int off,
int len)
throws IOException
read in class FilterInputStreamIOException - if the underlying stream throws or the
stream is exhausted and the Checksum doesn't match the expected
valuepublic long skip(long n)
throws IOException
skip in class FilterInputStreamIOExceptionCopyright © 2002–2025. All rights reserved.