public class FilterStreamUnpacker extends Object
| Constructor and Description |
|---|
FilterStreamUnpacker() |
| Modifier and Type | Method and Description |
|---|---|
static InputStream |
unpackFilterInputStream(FilterInputStream is)
Finds the underlying
InputStream to a FilterInputStream. |
static OutputStream |
unpackFilterOutputStream(FilterOutputStream os)
Finds the underlying
OutputStream to a FilterOutputStream. |
public static InputStream unpackFilterInputStream(FilterInputStream is) throws IllegalAccessException
InputStream to a FilterInputStream. Note this is not always possible due
to security restrictions of the JVM.IllegalAccessException - If security policies of the JVM prevent unpacking of the FilterInputStream.public static OutputStream unpackFilterOutputStream(FilterOutputStream os) throws IllegalAccessException
OutputStream to a FilterOutputStream. Note this is not always possible due
to security restrictions of the JVM.IllegalAccessException - If security policies of the JVM prevent unpacking of the FilterOutputStream.