public class SkipShieldingInputStream
extends java.io.FilterInputStream
skip(long)
and delegates to FilterInputStream.read()
instead.
Some implementations of InputStream
implement InputStream.skip(long)
in a way that throws an exception if the stream
is not seekable - System.in
is known to behave
that way. For such a stream it is impossible to invoke skip at all
and you have to read from the stream (and discard the data read)
instead. Skipping is potentially much faster than reading so we do
want to invoke skip
when possible. We provide this class so
you can wrap your own InputStream
in it if you encounter
problems with skip
throwing an excpetion.
Constructor and Description |
---|
SkipShieldingInputStream(java.io.InputStream in) |
Modifier and Type | Method and Description |
---|---|
long |
skip(long n) |
Copyright © 2010 - 2020 Adobe. All Rights Reserved