工作模式:

客户端代码:

package demos.nio.socketChannel;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.nio.channels.SocketChannel;
import java.util.Arrays;
import java.util.Iterator;
import java.util.Set; import org.apache.log4j.Logger; /**
* 非阻塞 Socket 客户端
* 通过一个线程监听管理所有通道
*
*/
public class Client {
private Logger logger=Logger.getLogger(Client.class);
/** * 服务器Ip */
private String ip;
/** * 服务器端口 */
private int port;
/** * 控制是否监听通道事件 */
private volatile boolean isListenable;
/** * 缓冲区大小 */
private final int bufferSize = 1024;
/** * 选择器每次阻塞监听的最大时间 */
private final int selectorTime = 1000;
/** * 创建Selector来管理通道事件 */
private Selector selector; public Client(String ip, int port) {
this.ip = ip;
this.port = port;
// 监听器
try {
selector = Selector.open();
} catch (IOException e) {
e.printStackTrace();
}
} public void send(String msg) {
send(msg.getBytes());
} /**
* 发送数据
*
* @param data
*/
public void send(byte[] data) {
try {
// 打开一个网络通道
SocketChannel socketChannel = SocketChannel.open();
// 设置通道为非阻塞
socketChannel.configureBlocking(false);
// 注册管道事件,监听连接成功
SelectionKey key = socketChannel.register(selector,
SelectionKey.OP_CONNECT);
// 将发送数据附加在SelectionKey上
key.attach(ByteBuffer.wrap(data));
// 建立连接
socketChannel.connect(new InetSocketAddress(ip, port)); //当第一个通道被注册到Selector上时,开启守护线程开始监听通道的事件
if (!isListenable&&selector.keys().size() == 1) {
//开启监听
isListenable = true;
// 开一个线程监听所有通道的事件
Thread thread = new Thread(this.new SelectionTask());
thread.start();
}
} catch (Exception e) {
e.printStackTrace();
}
} /**
* 往通道中写入数据
* 当通道为非阻塞时它都是可写的,所以如果需要写数据,则注册监听写事件即可
* @param selectionKey
*/
private void writeData(SelectionKey selectionKey) {
selectionKey.interestOps(selectionKey.interestOps()
| SelectionKey.OP_WRITE);
selectionKey.selector().wakeup();
} public void closeListen() {
logger.debug("关闭监听");
this.isListenable = false;
this.selector.wakeup();
} /**
* 判断是否继续监听
* 如果selector中没有可监听的通道,则取消监听
* @return
*/
private boolean isListen() {
return this.isListenable && (this.selector.keys().size() > 0);
} /**
* 监听任务
*
* @author root
*
*/
class SelectionTask implements Runnable { /**
* 处理监听到的事件
*
* @param selectionKey
* @throws IOException
*/
private void handleSelectionKey(SelectionKey selectionKey)
throws IOException {
/** * 缓冲区 */
ByteBuffer byteBuffer = ByteBuffer.allocate(bufferSize);
SocketChannel channel = (SocketChannel) selectionKey.channel();
if (!selectionKey.isValid()) {
return;
}
if (selectionKey.isConnectable()) {
if (!channel.isConnectionPending()) {
return;
}
channel.finishConnect();
logger.debug("与服务器连接成功");
// 连接成功后开始写数据
writeData(selectionKey);
} else if (selectionKey.isReadable()) {
//循环把接受到的数据写入到内存中
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
byteBuffer.clear();
while (channel.read(byteBuffer) > 0) {
byteBuffer.flip();
byte[] b = Arrays.copyOf(byteBuffer.array(), byteBuffer
.limit());
outputStream.write(b);
byteBuffer.clear();
}
logger.debug("客户端收到信息:"
+ new String(outputStream.toByteArray()));
// 使Selector注销对该Channel的监听
selectionKey.cancel();
} else if (selectionKey.isWritable()) {
logger.debug("写出数据");
ByteBuffer buffer = (ByteBuffer) selectionKey.attachment();
if (buffer == null) {
return;
}
while (buffer.hasRemaining()) {
channel.write(buffer);
}
selectionKey.interestOps(SelectionKey.OP_READ);
}
} @Override
public void run() {
try {
// 控制是否监听
while (isListen()) {
//判断是否监听到了感兴趣的事件
if (selector.select(selectorTime) <= 0) {
continue;
}
Set<SelectionKey> selectionKeys = selector.selectedKeys();
Iterator<SelectionKey> iterator = selectionKeys.iterator();
while (iterator.hasNext()) {
handleSelectionKey(iterator.next());
//处理完selectionKey后需要移除它
iterator.remove();
}
}
selector.close();
} catch (IOException e) {
e.printStackTrace();
}
}
} public static void main(String[] args) throws InterruptedException {
Client socket = new Client("127.0.0.1", 8686);
socket.send("hello");
}
}

NIO学习:异步IO实例的更多相关文章

  1. Python并发编程之学习异步IO框架:asyncio 中篇(十)

    大家好,并发编程 进入第十章.好了,今天的内容其实还挺多的,我准备了三天,到今天才整理完毕.希望大家看完,有所收获的,能给小明一个赞.这就是对小明最大的鼓励了.为了更好地衔接这一节,我们先来回顾一下上 ...

  2. 异步IO实例

    #include <stdio.h> #include <stdlib.h> #include <errno.h> #include <string.h> ...

  3. Java网络编程和NIO详解5:Java 非阻塞 IO 和异步 IO

    Java网络编程和NIO详解5:Java 非阻塞 IO 和异步 IO Java 非阻塞 IO 和异步 IO 转自https://www.javadoop.com/post/nio-and-aio 本系 ...

  4. Python(3)---从迭代器到异步IO

    whenif 关注 2017.02.13 23:48* 字数 1750 阅读 250评论 0喜欢 8 目录 1. 迭代(iteration)与迭代器(iterator) 1.1 构建简单迭代器 1.2 ...

  5. NIO 之阻塞IO和非阻塞IO(转载)

    阻塞模式 IO 我们已经介绍过使用 Java NIO 包组成一个简单的客户端-服务端网络通讯所需要的 ServerSocketChannel.SocketChannel 和 Buffer,我们这里整合 ...

  6. 异步IO与回调

    最好了解 Java NIO 中 Buffer.Channel 和 Selector 的基本操作,主要是一些接口操作,比较简单. 本文将介绍非阻塞 IO 和异步 IO,也就是大家耳熟能详的 NIO 和 ...

  7. netty权威指南学习笔记一——NIO入门(2)伪异步IO

    在上一节我们介绍了四种IO相关编程的各个特点,并通过代码进行复习了传统的网络编程代码,伪异步主要是引用了线程池,对BIO中服务端进行了相应的改造优化,线程池的引入,使得我们在应对大量客户端请求的时候不 ...

  8. Java NIO 学习笔记(六)----异步文件通道 AsynchronousFileChannel

    目录: Java NIO 学习笔记(一)----概述,Channel/Buffer Java NIO 学习笔记(二)----聚集和分散,通道到通道 Java NIO 学习笔记(三)----Select ...

  9. JAVA NIO学习一:NIO简介、NIO&IO的主要区别

    在前面学习了IO之后,今天我们开始进入NIO学习环节,首先我们会NIO做一个简单的介绍,让大家认识NIO,然后会和IO进行一个对比认识进行区分.好了,下面我们就开始学习: 一.NIO简介 1.概述 从 ...

随机推荐

  1. Python和C|C++的混编(一):Python调用C、C++---Boost库

    不使用boost.python库来直接构建dll的话比较繁琐,下面实例是借助boost库实现python对C.C++的调用 1 首先确定已经安装python和boost库,本例测试环境是python2 ...

  2. str.match(regex)与regex.exec(str)对比解析,从此不再晕

    match属于字符串的方法,exec属于正则表达式的方法.其中regex是否有g标志的区别经常搞不清,所以测试记录下. 1.str.match(regex) regex中无g标志 返回一个数组,arr ...

  3. 【HDOJ】1027 Ignatius and the Princess II

    这道题目最开始完全不懂,后来百度了一下,原来是字典序.而且还是组合数学里的东西.看字典序的算法看了半天才搞清楚,自己仔细想了想,确实也是那么回事儿.对于长度为n的数组a,算法如下:(1)从右向左扫描, ...

  4. hduAnother Graph Game

    http://acm.hdu.edu.cn/showproblem.php?pid=4647 很扯的一题 将每条边的一半权值分给它所连的两个结点 #include <iostream> # ...

  5. Xcode6新建的工程没有Frameworks文件夹了?!原来是这样

    http://stackoverflow.com/questions/24181062/default-frameworks-missing-in-xcode-6-beta They are impo ...

  6. VS2010如何调试IIS上的网站

    通常,我们在Visual Studio里调试ASP.NET网站,都是加个断点,然后按F5,在VS自带的虚拟服务器下调试的.但有时候,VS自带的服务器弱爆了,无法满足一些特定情况的要求,我们必须把网站放 ...

  7. QTP常见问题解决方法(一)

    1.对脚本的运行速度进行设置 TOOLS->OPTIONS->RUN->RUN MODE 设置就可以了:一般可以设置为500或者1000值,也就是毫秒: QTP 12.0版本: TO ...

  8. 字典转模型第三方框架---MJExtension

    字典转模型第三方框架 Mantle 所有模型都必须继承自MTModel JSONModel 所有模型都必须继承自JSONModel MJExtension 不需要强制继承任何其他类 设计框架需要考虑的 ...

  9. 【HTML】Beginner7:Image

    1.Image     The web is not just about text,it is a multi-media extravaganza and the most common form ...

  10. 排列的学习(java)

    1.无重复排列 2.有重复排列 3,下一个排列 package 生成排列; public class Main { static int count=0; //a中保存原来的排列,lev表示选定第几个 ...