| 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use ReadableByteChannel | |
| java.nio.channels | Defines channels, which represent connections to entities that are capable of performing I/O operations, such as files and sockets; defines selectors, for multiplexed, non-blocking I/O operations. | 
| Uses of ReadableByteChannel in java.nio.channels | 
| Subinterfaces of ReadableByteChannel in java.nio.channels | |
 interface | 
ByteChannel
A channel that can read and write bytes.  | 
 interface | 
ScatteringByteChannel
A channel that can read bytes into a sequence of buffers.  | 
| Classes in java.nio.channels that implement ReadableByteChannel | |
 class | 
DatagramChannel
A selectable channel for datagram-oriented sockets.  | 
 class | 
FileChannel
A channel for reading, writing, mapping, and manipulating a file.  | 
static class | 
Pipe.SourceChannel
A channel representing the readable end of a Pipe. | 
 class | 
SocketChannel
A selectable channel for stream-oriented connecting sockets.  | 
| Methods in java.nio.channels that return ReadableByteChannel | |
static ReadableByteChannel | 
Channels.newChannel(InputStream in)
Constructs a channel that reads bytes from the given stream.  | 
| Methods in java.nio.channels with parameters of type ReadableByteChannel | |
static InputStream | 
Channels.newInputStream(ReadableByteChannel ch)
Constructs a stream that reads bytes from the given channel.  | 
static Reader | 
Channels.newReader(ReadableByteChannel ch,
          CharsetDecoder dec,
          int minBufferCap)
Constructs a reader that decodes bytes from the given channel using the given decoder.  | 
static Reader | 
Channels.newReader(ReadableByteChannel ch,
          String csName)
Constructs a reader that decodes bytes from the given channel according to the named charset.  | 
abstract  long | 
FileChannel.transferFrom(ReadableByteChannel src,
             long position,
             long count)
Transfers bytes into this channel's file from the given readable byte channel.  | 
  | 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.