zoukankan      html  css  js  c++  java
  • Java NIO系列教程(二) Channel

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

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

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

    Channel的实现

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

    • FileChannel
    • DatagramChannel
    • SocketChannel
    • ServerSocketChannel

    FileChannel 从文件中读写数据。

    DatagramChannel 能通过UDP读写网络中的数据。

    SocketChannel 能通过TCP读写网络中的数据。

    ServerSocketChannel可以监听新进来的TCP连接,像Web服务器那样。对每一个新进来的连接都会创建一个SocketChannel。

    基本的 Channel 示例

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

    package java_.nio_.demo;
    
    import java.io.RandomAccessFile;
    import java.nio.ByteBuffer;
    import java.nio.channels.FileChannel;
    
    public class FileChannelMain {
    
        public static void main(String[] args) throws Exception {
            RandomAccessFile raf = new RandomAccessFile("E:/edu/FileChannelMain.txt", "rw");
            FileChannel fc = raf.getChannel();
            ByteBuffer buf = ByteBuffer.allocate(1024);
            int bytesRead = fc.read(buf);
            while (bytesRead != -1) {
                System.out.println("Read : " + bytesRead);
                buf.flip();
                while (buf.hasRemaining()) {
                    System.out.print((char) buf.get());
                }
                buf.clear();
                bytesRead = fc.read(buf);
            }
            raf.close();
        }
    }

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

  • 相关阅读:
    springMVC准确定位多个参数对象的属性
    java正则表达式应用
    mybatis与mysql插入数据返回主键
    xml文件中怎么写小于号 等特殊符号
    sqlserver 分页查询 举例
    Python报错:IndentationError: expected an indented block
    统计输入的汉字,数字,英文,other数量
    easyui+ajax获取同表关联的数据
    JAVA死锁
    mybatis自动生成mapper,dao映射文件
  • 原文地址:https://www.cnblogs.com/ClassNotFoundException/p/6340085.html
Copyright © 2011-2022 走看看