Posted on 2011-12-27 11:50
cooperzh 阅读(479)
评论(0) 编辑 收藏 所属分类:
NIO 、
读书笔记
IO三种方式:BIO,NIO,AIO
(异步读写asynchronous IO)jdk1.6及之前都只实现BIO 和 NIOjdk1.7开始支持AIO,即NIO 2.0在BIO阻塞模式下server端:1 new ServerSocket(int port) 监听端口2 serverSocket.accept() 阻塞式等待客户端的连接,有连接才返回Socket对象3 socket.getINputStream() 获取客户端发过来的信息流4 socket.getOutputStream() 获取输出流对象,从而写入数据返回客户端client端:1 newSocket(String host,int port) 建立与服务器端的连接,如果服务器没启动,报Connection refused异常2 socket.getInputStream() 读取服务器端返回的流3 socket.getOutputStream() 获取输出流,写入数据发送到服务器端在NIO模式下Server端:1 ServerSocketChannel.open() 获取serverScoketChannel实例2 serverScoketChannel.configueBlocking(false) 设置channel为非阻塞模式3 serverSocketChannel.socket() 获取serverSocket对象4 serverSocket.bind(port) 监听端口5 Selector.open() 打开Selector,获取selector实例6 serverSocketChannel.register(Selector,int) 向selector注册channel和感兴趣的事件7 while(true) 循环以保证正常情况下服务器端一直处于运行状态8 selector.select() 获取selector实例中需要处理的SelectionKey的数量9 for(SelectionKey key:selector.selectedKeys()) 遍历selector.selectedKeys,以对每个SelectionKey的事件进行处理10 key.isAcceptable() 判断SelectionKey的类型是否为客户端建立连接的类型11 key.channel() 当SelectionKey的类型是acceptabel时,获取绑定的ServerSocketChannel对象12 serverSocketChannel.accept() 接受客户端建立连接的请求,并返回SocketChannel对象13 socketChannel.regiseter(Selector,int) 向Selector注册感兴趣的事件类型,如read,write14 key.isReadable() 判断SelectionKey是否为readable,如是则意味着有消息流在等待处理15 socketChannel.read(ByteBuffer) 从SelectionKey中绑定的SocketChannel对象读取消息流16 socketChannel.write(ByteBuffer) 从SelectionKey中绑定的SocketChannel对象输出消息流client端:
1 SocketChannel.open() 打开SocketChannel
2 SocketChannel.configureBlocking(false) 将SocketChannel配置为非阻塞模式
3 SocketChannel.connect(host,port) 连接到指定的目标地址
4 Selector.open() 打开Selector
5 SocketChannel.register(Selector,int) 向Selector注册感兴趣的事件,connected,read,write
6 while(true) 循环执行保证客户端一直处于运行状态
7 Selector.select() 从Selector中获取是否有可读的key信息
8 for(SelectionKey key:selector.selectedKeys()) 遍历selector中所有selectedKeys
9 SelectionKey.isConnectable() 判断是否为连接建立的类型
10 SelectionKey.channel() 获取绑定的SocketChannel
11 SocketChannel.finishConnect() 完成连接的建立(TCP/IP的三次握手)
12 SelectionKey.isReadable() 判断是否为可读类型
13 SelectionKey.channel() 获取绑定的SocketChannel
14 SocketChannel.read(ByteBuffer) 从SocketChannel中读取数到ByteBuffer中
15 SocketChannel.write(ByteBuffer) 向SocketChannel中写入ByteBuffer对象数据