Closeable, AutoCloseable, ASCII85Constantspublic class ASCII85InputStream extends InputStream implements ASCII85Constants
The class is derived from InputStream instead of FilteredInputStream because we can use the read(byte[], int, int) method from InputStream which simply delegates to read(). This makes the implementation easier.
The filter is described in chapter 3.13.3 of the PostScript Language Reference (third edition).
END, EOD, EOL, POW85, START, ZERO, ZERO_ARRAY| Constructor | Description |
|---|---|
ASCII85InputStream(InputStream in) |
| Modifier and Type | Method | Description |
|---|---|---|
int |
read() |
available, close, mark, markSupported, read, read, readAllBytes, readNBytes, reset, skip, transferTopublic ASCII85InputStream(InputStream in)
FilterInputStreampublic int read()
throws IOException
read in class InputStreamIOExceptionFilterInputStreamCopyright © 2018 Apache Software Foundation. All rights reserved.