public class StreamPumper
extends java.lang.Object
implements java.lang.Runnable
| 构造器和说明 |
|---|
StreamPumper(java.io.InputStream is,
java.io.OutputStream os)
Create a new stream pumper.
|
StreamPumper(java.io.InputStream is,
java.io.OutputStream os,
boolean closeWhenExhausted)
Create a new stream pumper.
|
StreamPumper(java.io.InputStream is,
java.io.OutputStream os,
boolean closeWhenExhausted,
int size)
Create a new stream pumper.
|
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
isFinished()
Tells whether the end of the stream has been reached.
|
void |
run()
Copies data from the input stream to the output stream.
|
void |
waitFor()
This method blocks until the stream pumper finishes.
|
public StreamPumper(java.io.InputStream is,
java.io.OutputStream os,
boolean closeWhenExhausted)
is - input stream to read data fromos - output stream to write data to.closeWhenExhausted - if true, the output stream will be closed when the input is exhausted.public StreamPumper(java.io.InputStream is,
java.io.OutputStream os,
boolean closeWhenExhausted,
int size)
is - input stream to read data fromos - output stream to write data to.closeWhenExhausted - if true, the output stream will be closed when the input is exhausted.size - the size of the internal buffer for copying the streamspublic StreamPumper(java.io.InputStream is,
java.io.OutputStream os)
is - input stream to read data fromos - output stream to write data to.public void run()
run 在接口中 java.lang.Runnablepublic boolean isFinished()
public void waitFor()
throws java.lang.InterruptedException
java.lang.InterruptedException - InterruptedExceptionisFinished()