- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- cn.mcres.karlatemp.mxlib.tools.UnclosedInputStream
-
- 所有已实现的接口:
Closeable
,AutoCloseable
public class UnclosedInputStream extends FilterInputStream
-
-
构造器概要
构造器 构造器 说明 UnclosedInputStream(InputStream in)
Creates aFilterInputStream
by assigning the argumentin
to the fieldthis.in
so as to remember it for later use.
-
方法概要
修饰符和类型 方法 说明 void
close()
-
从类继承的方法 java.io.FilterInputStream
available, mark, markSupported, read, read, read, reset, skip
-
从类继承的方法 java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, skipNBytes, transferTo
-
-
-
-
构造器详细资料
-
UnclosedInputStream
public UnclosedInputStream(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.
-
-
方法详细资料
-
close
public void close()
- 指定者:
close
在接口中AutoCloseable
- 指定者:
close
在接口中Closeable
- 覆盖:
close
在类中FilterInputStream
-
-