public class TaggedInputStream extends ProxyInputStream
TaggedIOException class to wrap all thrown
IOExceptions. See below for an example of using this class.
TaggedInputStream stream = new TaggedInputStream(...);
try {
// Processing that may throw an IOException either from this stream
// or from some other IO activity like temporary files, etc.
processStream(stream);
} catch (IOException e) {
if (stream.isCauseOf(e)) {
// The exception was caused by this stream.
// Use e.getCause() to get the original exception.
} else {
// The exception was caused by something else.
}
}
Alternatively, the throwIfCauseOf(Throwable) method can be
used to let higher levels of code handle the exception caused by this
stream while other processing errors are being taken care of at this
lower level.
TaggedInputStream stream = new TaggedInputStream(...);
try {
processStream(stream);
} catch (IOException e) {
stream.throwIfCauseOf(e);
// ... or process the exception that was caused by something else
}
TaggedIOExceptionin| 构造器和说明 |
|---|
TaggedInputStream(InputStream proxy)
Creates a tagging decorator for the given input stream.
|
| 限定符和类型 | 方法和说明 |
|---|---|
protected void |
handleIOException(IOException e)
Tags any IOExceptions thrown, wrapping and re-throwing.
|
boolean |
isCauseOf(Throwable exception)
Tests if the given exception was caused by this stream.
|
void |
throwIfCauseOf(Throwable throwable)
Re-throws the original exception thrown by this stream.
|
afterRead, available, beforeRead, close, mark, markSupported, read, read, read, reset, skippublic TaggedInputStream(InputStream proxy)
proxy - input stream to be decoratedpublic boolean isCauseOf(Throwable exception)
exception - an exceptiontrue if the exception was thrown by this stream,
false otherwisepublic void throwIfCauseOf(Throwable throwable) throws IOException
TaggedIOException
wrapper created by this decorator, and then unwraps and throws the
original wrapped exception. Returns normally if the exception was
not thrown by this stream.throwable - an exceptionIOException - original exception, if any, thrown by this streamprotected void handleIOException(IOException e) throws IOException
handleIOException 在类中 ProxyInputStreame - The IOException thrownIOException - if an I/O error occurs