java的NIO

Wesley13
• 阅读 688

java的NIO

        java的NIO主要有3个特性Channel、buffer、selector来保证I/O高可复用性,其中最重要的是buffer和selector操作。详细教材查看 jakob jenkov教材:http://tutorials.jenkov.com/java-nio/index.html 

1、channel和buffer

           a、 channel:有点像流的管道,NIO从channel里面获取、发送数据。java的I/O已经从底层被NIO实现了一次,所以性能上和纯粹的NIO中使用channel没有太大的区别。

java的NIO

        channel的类型主要就下面几种:

FileChannel            //文件
DatagramChannel        //UDP
SocketChannel          //socket
ServerSocketChannel    //socket服务

它有2个特点:1、读写控制、2、按着单个byte位来操作。           b、 Buffer:就是在内存开辟的空间,用来临时存放数据。这里的buffer是以bytebuffer为父类实现的HeapByteBuffer。

            一个Buffer有3个中有的参数:

                position:当前位置

                            1、写:从当前可以写的地址开始(第一次从0开始),随着写入的增大。写的时候最大为capacity-1。

                            2、读:从0开始、随着读开始移动增大。最大读取到limit

                limit:写模式下为capacity。当转换为读模式,则limit=position(写入的个数)

                capacity:一个buffer的固定大小。

        如下示意图

java的NIO

    例子:

#有一个Buffer是70字节
1、buffer.allocate(70):capacity=70、position=0、limit=70
1、写如40个字节:capacity=70、position=40、limit=70
2、写转化为读:buffer.flip();capacity=70,position=0,limit=40
3、读30字节:capacity=70、position=30、limit=40
4、读转写:
       buffer.clear():所有剩余数据都清空。capacity=70,position=0,limit=70
       buffer.compact():将剩余的所有数据复制到buffer起始。capacity=70,position=10,limit=70

   一个fileChannel的例子

public static void main(String[] args) {
    try {
        RandomAccessFile aFile = new RandomAccessFile("D:/project/test/nio/1.txt", "rw");
        FileChannel fileChannel = aFile.getChannel();
        // buffer
        ByteBuffer buf = ByteBuffer.allocate(48);
        while (fileChannel.read(buf) != -1) {
            buf.flip();// 写模式切换成读模式
            while (buf.hasRemaining()) {
                System.out.println(buf.get());
            }
            buf.clear();
        }
        aFile.close();//从写切换到读
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

java的NIO   c、buffer的分类:

2、零复制

        buffer默认是在JVM开辟空间、而NIO比BIO在数据处理方面有一个有点:不会将数据从逻辑主存复制到JVM主存

bytebuffer开辟空间的两个方法。第二个方法直接在主存开辟空间、不需要在JVM中操作

    1. 直接从内核态的数据区读取数据,不用在copy到jvm堆内存。

    2. 多个数据Buffer不用组合成一个,直接就程序处理了。

    3. 发送的时候,直接发送。

    //直接在JVM开辟空间 public static ByteBuffer allocate(int capacity) { if (capacity < 0) throw new IllegalArgumentException(); return new HeapByteBuffer(capacity, capacity); }
    //直接在内存开辟空间 public static ByteBuffer allocateDirect(int capacity) { return new DirectByteBuffer(capacity); }

3、Slector

        普通的I/O调用都会阻塞等待,直到文件数据准备就行才能使用。而NIO则是通过一个单独的线程不对的去询问系统I/O数据是否准备好了。准备好后,就可以通过存放在Selector线程中的key(处理线程的引用)来处理。通过这种主动启动线程的方式,避免了掉多线程同时启动,通过CPU切换切换询问状态的方式,节约了CPU的开销。

        a、开启Selector

Selector selector = Selector.open();

      b、注册channel到selector

channel.configureBlocking(false);//设置非阻塞。也就是说不能和FileChannel一起使用了
SelectionKey key=channel.register(selector,SelecotionKey.OP_READ);

事件类型

注册类型

类型判断

监听:accept(服务器)

SelectionKey.OP_ACCEPT

SelctionKey.isAcceptable()

连接:connect(客服端、服务器)

SelectionKey.OP_CONNECT

SelctionKey.isConnectable()

读:read(客服端、服务器)

SelectionKey.OP_READ

SelctionKey.isReadable()

写:write(客服端、服务器)

SelectionKey.OP_WRITE

SelctionKey.isWritable()

                **SelectionKey:**是channel在selector上的注册标签。当I/O事件准备好的时候,就会返回需要事件类型:

                selectionKey可以获取channel、selector,以及添加和获取附加对象

//这个就是获取channel、处理数据的方式。
Channel channel = selectionKey.channel();
//这个就是获取selector,用来处理完事件后重新注册
Selector selector = selectionKey.selector();
//添加、获取附加对象。
selectionKey.attch(theObject);
Object attachObj = selectionKey.attachment();

c、从selector中获取事件     (slectionKey可以看作是一个存放channel、附加对象的容,和我们每次注册到selector中需要处理的事件方式。形成了一个映射关系。只要事件达成我们就可以继续处理)    

while(true){
    //第一步:获取事件,只有当有事件处理的时候,selecotr会返回一个大于0的值
    int readyEvents = selector.select();
    if(readyEvents==0) continue;
    //第二步:获取事件标签
    Set<SelectionKey> keys = slector.slectionKeys();
    //第三步:处理事件
    Iterator keyIteraotrs = keys.interator();
    while(keyIterators.hasNext()){
        SelectionKey selectionKey = keyIterators.next();
        //当获取事件的时候,需要从selector删掉。
        keys.remove(selectionKey);
        if(selectionKey.isAcceptable()){
            //do something 。。。
            //注册
        }else if(selectionKey.isConnectable()){
            //do something 。。。
            //注册        
        }else if(selectionKey.isReadable()){
            //do something 。。。
            //注册    
        }else if(selectionKey.isWritable()){
            //do something 。。。
            //注册         
        }
    }
}

a、文件4、使用       

  try {
            RandomAccessFile fromFile = new RandomAccessFile("D:/project/test/nio/1.txt", "rw");
            FileChannel fromFileChannel = fromFile.getChannel();
            RandomAccessFile toFile = new RandomAccessFile("D:/project/test/nio/2.txt", "rw");
            FileChannel toFileChannel = toFile.getChannel();
            //不同channel的数据传送
            toFileChannel.transferFrom(fromFileChannel, 0, fromFileChannel.size());
            // buffer
//          ByteBuffer buf = ByteBuffer.allocate(48);
//          while (fromFileChannel.read(buf) != -1) {
//              // buf.flip();// 写模式切换成读模式
//              while (buf.hasRemaining()) {
//                  System.out.println(buf.getChar());
//              }
//              // buf.clear();// 从写切换到读
//          }
            fromFile.close();
            toFile.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

   b、serverSocket

// 1.开启Selector
        Selector selector = Selector.open();
        ServerSocketChannel serverSocketChannel = ServerSocketChannel.open();
        // 2、设置channel的模式(阻塞-false、非阻塞-true)
        serverSocketChannel.socket().bind(new InetSocketAddress(80));
        serverSocketChannel.configureBlocking(false);
        // 2、注册channel到Selector
        serverSocketChannel.register(selector, SelectionKey.OP_ACCEPT);
        while (true) {
            int readyChannel = selector.select();
            if (readyChannel == 0)
                continue;
            Set<SelectionKey> keys = selector.selectedKeys();
            Iterator<SelectionKey> keyIterators = keys.iterator();
            while (keyIterators.hasNext()) {
                SelectionKey selectionKey = keyIterators.next();
                keys.remove(selectionKey);
                SocketChannel socketChannel = null;
                if (selectionKey.isAcceptable()) {
                    // 访问事件(这里需要获取的serverSocketChannel)
                    serverSocketChannel = (ServerSocketChannel) selectionKey.channel();
                    socketChannel = serverSocketChannel.accept();
                    socketChannel.configureBlocking(false);
                    socketChannel.register(selector,
                            SelectionKey.OP_WRITE | SelectionKey.OP_READ | SelectionKey.OP_CONNECT);
                } else if (selectionKey.isConnectable()) {
                    socketChannel = (SocketChannel) selectionKey.channel();
                    socketChannel.configureBlocking(false);
                    socketChannel.register(selector, SelectionKey.OP_WRITE | SelectionKey.OP_READ);
                } else if (selectionKey.isReadable()) {
                    socketChannel = (SocketChannel) selectionKey.channel();
                    socketChannel.configureBlocking(false);
                    ByteBuffer buff = ByteBuffer.allocateDirect(1024);
                    while (socketChannel.read(buff) != -1) {
                        buff.flip();
                        while (buff.hasRemaining()) {
                            System.out.println(buff.getChar());
                        }
                        buff.clear();
                    }
                    buff=null;
                    socketChannel.register(selector, SelectionKey.OP_ACCEPT | SelectionKey.OP_WRITE);
                } else if (selectionKey.isWritable()) {
                    socketChannel = (SocketChannel) selectionKey.channel();
                    socketChannel.configureBlocking(false);
                    ByteBuffer buff = ByteBuffer.allocateDirect(1024);
                    buff.put(new String("hello , i am Nio !").getBytes());
                    buff.flip();
                    socketChannel.write(buff);
                    buff=null;
                    socketChannel.register(selector, SelectionKey.OP_ACCEPT | SelectionKey.OP_READ);
                }
            }
        }

       c、socket

// 1.开启Selector
        Selector selector = Selector.open();
        SocketChannel socketChannel = SocketChannel.open();
        // 2、设置channel的模式(阻塞-false、非阻塞-true)
        socketChannel.configureBlocking(false);
        socketChannel.connect(new InetSocketAddress("http://localhost/", 80));
        // 2、注册channel到Selector
        socketChannel.register(selector, SelectionKey.OP_CONNECT);
        while (true) {
 
            // 返回事件
            int readyChannels = selector.select();
            if (readyChannels == 0)
                continue;
            // 有事件发生
 
            // 返回的key集合(返回的是一个channel集合)
            Set<SelectionKey> keys = selector.selectedKeys();
 
            // 对每一个channel进行处理
            Iterator<SelectionKey> keyIterators = keys.iterator();
            while (keyIterators.hasNext()) {
                SelectionKey selectionKey = keyIterators.next();
                keys.remove(selectionKey);
                // 连接发生了
                if (selectionKey.isConnectable()) {
                    // 需要将key(channel)移除、因为selector是条件触发,如果不删除。下次事件来了会发生问题
                    // 从key中获取channel
                    socketChannel = (SocketChannel) selectionKey.channel();
                    socketChannel.configureBlocking(false);
                    // 重新注册(前面删除了注册)
                    socketChannel.register(selector, SelectionKey.OP_WRITE | SelectionKey.OP_READ);
                } else if (selectionKey.isReadable()) {
                    // 读取数据
                    socketChannel = (SocketChannel) selectionKey.channel();
                    socketChannel.configureBlocking(false);
                    ByteBuffer buff = ByteBuffer.allocateDirect(1024);
                    while (socketChannel.read(buff) != -1) {
                        buff.flip();
                        while (buff.hasRemaining()) {
                            System.out.println(buff.getChar());
                        }
                        buff.clear();
                    }
                    buff=null;
                    socketChannel.register(selector, SelectionKey.OP_ACCEPT | SelectionKey.OP_WRITE);
                } else if (selectionKey.isWritable()) {
                    // 写入数据
                    socketChannel = (SocketChannel) selectionKey.channel();
                    socketChannel.configureBlocking(false);
                    ByteBuffer buff = ByteBuffer.allocateDirect(1024);
                    buff.put(new String("hello , i am Nio !").getBytes());
                    buff.blip();
                    socketChannel.write(buff);
                    buff=null;
                    socketChannel.register(selector, SelectionKey.OP_ACCEPT | SelectionKey.OP_READ);
                }
            }
        }

       d、Pipe:两个线程之间的数据传送。传送用sink通道、接受用source通道

 

public void writeToPipeChannel() throws IOException {
        Pipe pipe = Pipe.open();
        Pipe.SinkChannel sinkChannel = pipe.sink();
 
        String newData = "New String to write to file ... " + System.currentTimeMillis();
        ByteBuffer buf = ByteBuffer.allocate(48);
        buf.clear();
        buf.put(newData.getBytes());
        buf.flip();
        while (buf.hasRemaining()) {
            sinkChannel.write(buf);
        }
    }
 
    public void readFromPipeChannel() throws IOException {
        Pipe pipe = Pipe.open();
        Pipe.SourceChannel sourceChannel = pipe.source();
 
        ByteBuffer buf = ByteBuffer.allocateDirect(48);
        buf.clear();
        while (sourceChannel.read(buf) != -1) {
            buf.flip();
            while (buf.hasRemaining()) {
                System.out.println(buf.getChar());
            }
            buf.clear();
        }
    }

java的NIO     Pipe原理图示

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Wesley13 Wesley13
3年前
Java爬虫之JSoup使用教程
title:Java爬虫之JSoup使用教程date:201812248:00:000800update:201812248:00:000800author:mecover:https://imgblog.csdnimg.cn/20181224144920712(https://www.oschin
Wesley13 Wesley13
3年前
Java日期时间API系列31
  时间戳是指格林威治时间1970年01月01日00时00分00秒起至现在的总毫秒数,是所有时间的基础,其他时间可以通过时间戳转换得到。Java中本来已经有相关获取时间戳的方法,Java8后增加新的类Instant等专用于处理时间戳问题。 1获取时间戳的方法和性能对比1.1获取时间戳方法Java8以前
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Docker 部署SpringBoot项目不香吗?
  公众号改版后文章乱序推荐,希望你可以点击上方“Java进阶架构师”,点击右上角,将我们设为★“星标”!这样才不会错过每日进阶架构文章呀。  !(http://dingyue.ws.126.net/2020/0920/b00fbfc7j00qgy5xy002kd200qo00hsg00it00cj.jpg)  2
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这