IO和NIO的区别:
IO:通过流处理数据,仅支持阻塞IO。
核心组件:**InputStream /OutputStream用于字节的读写,Reader / Writer:用于字符流的读写。**读取过程中无法被中断,是阻塞式IO。NIO:通过管道处理数据,支持阻塞IO和非阻塞IO。
核心组件:**Channel通道、Buffer缓冲区、Selector选择器。**Channel与Buffer做直接交互,用于数据的传输,支持非阻塞IO,Buffer用于存放数据,Selector用于管理多个管道,允许单个线程处理多个IO。
Channel与Buffer联调
阻塞IO案例
ServerSocketChannel.accept():该方法用于等待客户端连接,直到有客户端连接才会返回,如果没有客户端连接则会一直阻塞。
SocketChannel.read(ByteBuffer):改方法用于接收客户端的数据,直到有数据才会返回,否则将一直阻塞线程。
javapackage com.jiawa.netty.server; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.ServerSocketChannel; import java.nio.channels.SocketChannel; import java.util.List; import static com.jiawa.netty.utils.ByteBufferUtil.debugAll; public class Server { private static final Logger logger = LoggerFactory.getLogger(Server.class); public static void main(String[] args) throws IOException { //创建缓存、缓存客户端信息 ByteBuffer buffer = ByteBuffer.allocate(16); //创建服务器 ServerSocketChannel server = ServerSocketChannel.open(); //绑定端口 server.bind(new InetSocketAddress(8080)); //创建客户端存储集合 List<SocketChannel> clients = new java.util.ArrayList<>(); //接收客户端 while (true) { //阻塞线程,直到有客户端请求连接后释放 SocketChannel client = server.accept(); //如果有客户端请求,则返回客户端信息 logger.info("收到客户端请求:{}", client); clients.add(client); for (SocketChannel c : clients) { //读取客户端数据 int read = c.read(buffer); if (read > 0) { logger.info("读取客户端数据:{}", read); //打开读 buffer.flip(); //打印数据 debugAll(buffer); //清空 buffer.clear(); } } } } }
非阻塞IO案例
server.configureBlocking(false):将ServerSocketChannel设置为非阻塞模式。
client.configureBlocking(false):将每个SocketChannel设置为非阻塞模式。设置为非阻塞之后,则不会阻塞线程,不管是否有客户端连接或者接收客户端数据,都会直接返回,不会阻塞线程。
javapackage com.jiawa.netty.server; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.ServerSocketChannel; import java.nio.channels.SocketChannel; import java.util.List; import static com.jiawa.netty.utils.ByteBufferUtil.debugAll; public class Server { private static final Logger logger = LoggerFactory.getLogger(Server.class); public static void main(String[] args) throws IOException { //创建缓存、缓存客户端信息 ByteBuffer buffer = ByteBuffer.allocate(16); //创建服务器 ServerSocketChannel server = ServerSocketChannel.open(); //非阻塞 if (server!= null){ server.configureBlocking(false); } //绑定端口 server.bind(new InetSocketAddress(8080)); //创建客户端存储集合 List<SocketChannel> clients = new java.util.ArrayList<>(); //接收客户端 while (true) { //阻塞线程,直到有客户端请求连接后释放 SocketChannel client = server.accept(); //将客户端设置为非阻塞 if (client != null) { client.configureBlocking(false); } //如果有客户端请求,则返回客户端信息 if (client != null) { logger.info("收到客户端请求:{}", client); clients.add(client); } for (SocketChannel c : clients) { //读取客户端数据 int read = c.read(buffer); if (read > 0){ logger.info("读取客户端数据:{}", read); //打开读 buffer.flip(); //打印数据 debugAll(buffer); //清空 buffer.clear(); } } } } }
NIO入门
小汤猿人类2025-03-25 16:22
相关推荐
ps酷教程1 天前
Jackson 解决没有无参构造函数的反序列化问题NiceCloud喜云1 天前
Opus 4.8 的 Effort Control 怎么选:Low 到 Max 五档策略AI玫瑰助手1 天前
Python函数:默认参数的定义与注意事项油炸自行车1 天前
Claude Code 错误:API Error: 400 Failed to deserialize the JSON body into the肩上风骋1 天前
C++14特性_日拱一卒1 天前
LeetCode:994腐烂的橘子隔窗听雨眠1 天前
Nginx网关响应慢排查手记智慧物业老杨1 天前
智慧物业合同周期管理系统:从风险预警到智能交接的全流程数智化落地方案源码宝1 天前
MES系统源码:Java8 + SpringBoot2.7 + MySQL8 + Redis,后端源码清爽易扩展JAVA社区1 天前
Java高级全套教程(十)—— SpringCloudAlibaba超详细实战详解