博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java AIO 入门实例(转)
阅读量:6272 次
发布时间:2019-06-22

本文共 1928 字,大约阅读时间需要 6 分钟。

Java7 AIO入门实例,首先是服务端实现:

服务端代码

SimpleServer:

 

Java代码
 
 
  1. public class SimpleServer {  
  2.   
  3.     public SimpleServer(int port) throws IOException {  
  4.         final AsynchronousServerSocketChannel listener = AsynchronousServerSocketChannel.open().bind(new InetSocketAddress(port));  
  5.   
  6.         listener.accept(null, new CompletionHandler<AsynchronousSocketChannel, Void>() {  
  7.             public void completed(AsynchronousSocketChannel ch, Void att) {  
  8.                 // 接受下一个连接  
  9.                 listener.accept(null, this);  
  10.   
  11.                 // 处理当前连接  
  12.                 handle(ch);  
  13.             }  
  14.   
  15.             public void failed(Throwable exc, Void att) {  
  16.   
  17.             }  
  18.         });  
  19.   
  20.     }  
  21.   
  22.     public void handle(AsynchronousSocketChannel ch) {  
  23.         ByteBuffer byteBuffer = ByteBuffer.allocate(32);  
  24.         try {  
  25.             ch.read(byteBuffer).get();  
  26.         } catch (InterruptedException e) {  
  27.             // TODO Auto-generated catch block  
  28.             e.printStackTrace();  
  29.         } catch (ExecutionException e) {  
  30.             // TODO Auto-generated catch block  
  31.             e.printStackTrace();  
  32.         }  
  33.         byteBuffer.flip();  
  34.         System.out.println(byteBuffer.get());  
  35.         // Do something  
  36.     }  
  37.       
  38. }  
 
跟着是客户端实现:
客户端代码

SimpleClient:

Java代码
 
 
  1. public class SimpleClient {  
  2.       
  3.     private AsynchronousSocketChannel client;  
  4.       
  5.     public SimpleClient(String host, int port) throws IOException, InterruptedException, ExecutionException {  
  6.         this.client = AsynchronousSocketChannel.open();  
  7.         Future<?> future = client.connect(new InetSocketAddress(host, port));  
  8.         future.get();  
  9.     }  
  10.       
  11.     public void write(byte b) {  
  12.         ByteBuffer byteBuffer = ByteBuffer.allocate(32);  
  13.         byteBuffer.put(b);  
  14.         byteBuffer.flip();  
  15.         client.write(byteBuffer);  
  16.     }  
  17.   
  18. }  

写一个简单的测试用例来跑服务端和客户端,先运行testServer(),在运行testClient();

测试用例

AIOTest

 

Java代码
 
 
  1. public class AIOTest {  
  2.       
  3.     @Test  
  4.     public void testServer() throws IOException, InterruptedException {  
  5.         SimpleServer server = new SimpleServer(7788);  
  6.           
  7.         Thread.sleep(10000);  
  8.     }  
  9.       
  10.     @Test  
  11.     public void testClient() throws IOException, InterruptedException, ExecutionException {  
  12.         SimpleClient client = new SimpleClient("localhost", 7788);  
  13.         client.write((byte) 11);  
  14.     }  
  15.   
  16. }  

因为是异步的,所以在运行server的时候没有发生同步阻塞,在这里我加了一个线程sleep(),如果没有的话,程序会直接跑完回收掉。

http://tigerlchen.iteye.com/blog/1747221

 

转载地址:http://glvpa.baihongyu.com/

你可能感兴趣的文章
LCD的接口类型详解
查看>>
nginx 基础文档
查看>>
LintCode: Unique Characters
查看>>
Jackson序列化和反序列化Json数据完整示例
查看>>
.net 中的DllImport
查看>>
nyoj 517 最小公倍数 【java睑板】
查看>>
include与jsp:include区别
查看>>
ftp的20 21端口和主动被动模式
查看>>
MySQL存储引擎选型
查看>>
Java中的statickeyword具体解释
查看>>
Linux车载系统的开发方向
查看>>
并发编程之五--ThreadLocal
查看>>
摄像头驱动OV7725学习笔记连载(二):0V7725 SCCB时序的实现之寄存器配置
查看>>
iOS播放短的音效
查看>>
[java] java 线程join方法详解
查看>>
JQuery datepicker 用法
查看>>
golang(2):beego 环境搭建
查看>>
天津政府应急系统之GIS一张图(arcgis api for flex)讲解(十)态势标绘模块
查看>>
程序员社交宝典
查看>>
ABP理论学习之MVC控制器(新增)
查看>>