public abstract class ProxyInputStream extends FilterInputStream
Constructor and Description |
---|
ProxyInputStream(InputStream proxy)
Constructs a new ProxyInputStream.
|
Modifier and Type | Method and Description |
---|---|
int |
read(byte[] data)
Invokes the delegate's
read(byte[]) method. |
available, close, mark, markSupported, read, read, reset, skip
public ProxyInputStream(InputStream proxy)
proxy
- The input stream to which calls are delegated.public int read(byte[] data) throws IOException
read(byte[])
method.read
in class FilterInputStream
data
- The buffer to read the bytes into.IOException
- if an I/O error occurs.Copyright © 2012. All Rights Reserved.