KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > nio > channels > Channels

java.nio.channels
Class Channels

java.lang.Object
  extended by java.nio.channels.Channels
See Also:
Top Examples, Source Code

public static ReadableByteChannel newChannel(InputStream in)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static WritableByteChannel newChannel(OutputStream out)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static InputStream newInputStream(ReadableByteChannel ch)
See Also:
reset, mark, IllegalBlockingModeException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static OutputStream newOutputStream(WritableByteChannel ch)
See Also:
IllegalBlockingModeException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static Reader newReader(ReadableByteChannel ch,
                               String csName)
See Also:
UnsupportedCharsetException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static Reader newReader(ReadableByteChannel ch,
                               CharsetDecoder dec,
                               int minBufferCap)
See Also:
reset, mark, IllegalBlockingModeException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static Writer newWriter(WritableByteChannel ch,
                               String csName)
See Also:
UnsupportedCharsetException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static Writer newWriter(WritableByteChannel ch,
                               CharsetEncoder enc,
                               int minBufferCap)
See Also:
IllegalBlockingModeException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags