类 Channels
- java.lang.Object
-
- cn.mcres.gyhhy.MXLib.io.Channels
-
public class Channels extends Object
-
-
方法概要
修饰符和类型 方法 说明 static ReadableByteChannelnewChannel(InputStream is)static WritableByteChannelnewChannel(OutputStream is)static InputStreamnewInputStream(AsynchronousByteChannel ch)static InputStreamnewInputStream(ReadableByteChannel ch)static OutputStreamnewOutputStream(AsynchronousByteChannel ch)static OutputStreamnewOutputStream(WritableByteChannel ch)
-
-
-
方法详细资料
-
newOutputStream
public static OutputStream newOutputStream(AsynchronousByteChannel ch)
-
newOutputStream
public static OutputStream newOutputStream(WritableByteChannel ch)
-
newInputStream
public static InputStream newInputStream(AsynchronousByteChannel ch)
-
newInputStream
public static InputStream newInputStream(ReadableByteChannel ch)
-
newChannel
public static ReadableByteChannel newChannel(InputStream is)
-
newChannel
public static WritableByteChannel newChannel(OutputStream is)
-
-