jp.go.nict.langrid.commons.io
クラス DuplicatingInputStream
java.lang.Object
java.io.InputStream
java.io.FilterInputStream
jp.go.nict.langrid.commons.io.DuplicatingInputStream
- すべての実装されたインタフェース:
- Closeable
public class DuplicatingInputStream
- extends FilterInputStream
データを複製しながら入力を行うストリーム。
- バージョン:
- $Revision: 8770 $
- 作成者:
- Takao Nakaguchi, $Author: Takao Nakaguchi $
クラス java.lang.Object から継承されたメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DuplicatingInputStream
public DuplicatingInputStream(InputStream source,
OutputStream outputStream)
- コンストラクタ。
- パラメータ:
source
- ソースの入力ストリームoutputStream
- 複製先の出力ストリーム
getOutputStream
public OutputStream getOutputStream()
- 出力ストリームを取得する。
- 戻り値:
- 出力ストリーム
read
public int read()
throws IOException
- オーバーライド:
- クラス
FilterInputStream
内の read
- 例外:
IOException
read
public int read(byte[] b)
throws IOException
- オーバーライド:
- クラス
FilterInputStream
内の read
- 例外:
IOException
read
public int read(byte[] b,
int off,
int len)
throws IOException
- オーバーライド:
- クラス
FilterInputStream
内の read
- 例外:
IOException