- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- cn.mcres.karlatemp.mxlib.util.ByteInputStream
-
- 所有已实现的接口:
Closeable
,AutoCloseable
public class ByteInputStream extends FilterInputStream
- 从以下版本开始:
- 2.5
-
-
构造器概要
构造器 构造器 说明 ByteInputStream(InputStream in)
Creates aFilterInputStream
by assigning the argumentin
to the fieldthis.in
so as to remember it for later use.
-
方法概要
修饰符和类型 方法 说明 int
read()
-
从类继承的方法 java.io.FilterInputStream
available, close, mark, markSupported, read, read, reset, skip
-
从类继承的方法 java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, skipNBytes, transferTo
-
-
-
-
构造器详细资料
-
ByteInputStream
public ByteInputStream(InputStream in)
Creates aFilterInputStream
by assigning the argumentin
to the fieldthis.in
so as to remember it for later use.- 参数:
in
- the underlying input stream, ornull
if this instance is to be created without an underlying stream.
-
-
方法详细资料
-
read
public int read() throws IOException
- 覆盖:
read
在类中FilterInputStream
- 抛出:
IOException
-
-