2021年3月5日
摘要: 准备:引入netty依赖 <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.8.Final</version> </dependency> 入门案例: 1.服务端业务处理类 阅读全文
posted @ 2021-03-05 17:59 bofeng 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 一、NIO 同步非阻塞IO 案例1:实现服务器端和客户端之间的数据通信(非阻塞) 1.nio网络服务端程序,能不断接受客户端连接并读取客户端发来的数据 package com.tenpower.nio.socket; import java.net.InetSocketAddress; import 阅读全文
posted @ 2021-03-05 14:56 bofeng 阅读(141) 评论(0) 推荐(0) 编辑