Java NIO 教程(二) Channel

作者: 步积 | 来源:发表于2017-06-06 18:39 被阅读917次

    参考:http://ifeve.com/channels/
    原文地址

    目录

    Java NIO的通道类似流,但又有些不同:

    • 既可以从通道中读取数据,又可以写数据到通道。但流的读写通常是单向的。
    • 通道可以异步地读写。
    • 通道中的数据总是要先读到一个Buffer,或者总是要从一个Buffer中写入。

    正如上面所说,从通道读取数据到缓冲区,从缓冲区写入数据到通道。如下图所示:

    NIO 数据读写流程

    Channel的实现

    这些是Java NIO中最重要的通道的实现:

    FileChannel
    DatagramChannel
    SocketChannel
    ServerSocketChannel

    • FileChannel 从文件中读写数据。
    • DatagramChannel 能通过UDP读写网络中的数据。
    • SocketChannel 能通过TCP读写网络中的数据。
    • ServerSocketChannel可以监听新进来的TCP连接,像Web服务器那样。对每一个新进来的连接都会创建一个SocketChannel

    基本的 Channel 示例

    下面是一个使用FileChannel读取数据到Buffer中的示例:

        private static void useNio(){
            RandomAccessFile aFile = null;
            try {
                aFile = new RandomAccessFile("/Users/sschen/Documents/SerialVersion.txt", "rw");
                FileChannel inChannel = aFile.getChannel();
    
                ByteBuffer byteBuffer = ByteBuffer.allocate(48);
                int byteReader = inChannel.read(byteBuffer);
    
                while (byteReader != -1) {
                    System.out.println("Read:" + byteReader);
                    byteBuffer.flip();
    
                    while (byteBuffer.hasRemaining()) {
                        System.out.println((char)byteBuffer.get());
                    }
    
                    byteBuffer.clear();
    
                    byteReader = inChannel.read(byteBuffer);
                }
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
            finally {
                try {
                    aFile.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    

    注意 buf.flip() 的调用,首先读取数据到Buffer,然后反转Buffer,接着再从Buffer中读取数据。下一节会深入讲解Buffer的更多细节。

    相关文章

      网友评论

        本文标题:Java NIO 教程(二) Channel

        本文链接:https://www.haomeiwen.com/subject/kirnfxtx.html