目录
一、AIO 概述
1.1、AIO 用来解决数据复制阶段的阻塞问题
- 一、AIO 概述
- 1.1、AIO 用来解决数据复制阶段的阻塞问题
- 1.2、异步模型需要底层操作系统(Kernel)提供支持
- 二、文件 AIO示例代码
- 同步意味着,在进行读写操作时,线程需要等待结果,还是相当于闲置。
- 异步意味着,在进行读写操作时,线程不必等待结果,而是将来由操作系统来通过回调方式由另外的线程来获得结果。
- Windows 系统通过 IOCP 实现了真正的异步 IO
- Linux 系统异步 IO 在 2.6 版本引入,但其底层实现还是用多路复用模拟了异步 IO,性能没有优势
-
示例代码
package com.example.nettytest.nio.day3; import lombok.extern.slf4j.Slf4j; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.AsynchronousFileChannel; import java.nio.channels.CompletionHandler; import java.nio.file.Paths; import java.nio.file.StandardOpenOption; import static com.example.nettytest.nio.day1.ByteBufferUtil.debugAll; @Slf4j public class AioFileChannel { public static void main(String[] args) throws IOException { try (AsynchronousFileChannel channel = AsynchronousFileChannel.open(Paths.get("data.txt"), StandardOpenOption.READ)) { ByteBuffer buffer = ByteBuffer.allocate(16); log.debug("线程"+Thread.currentThread().getName()+":"+"read begin..."); /** * channel.read 异步操作 *参数1 ByteBuffer *参数2 读取的起始位置 *参数3 附件 *参数4 回调对象 CompletionHandler * */ channel.read(buffer, 0, buffer, new CompletionHandler() { @Override //文件读取成功 public void completed(Integer result, ByteBuffer attachment) { log.debug("线程"+Thread.currentThread().getName()+":read completed...{}", result); attachment.flip(); debugAll(attachment); } @Override //文件读取失败 public void failed(Throwable exc, ByteBuffer attachment) { exc.printStackTrace(); } }); log.debug("线程"+Thread.currentThread().getName()+":read end..."); } catch (IOException e) { e.printStackTrace(); } //主线程先接收控制台输出,如果没有输出即停止在此处 System.in.read(); } }
-
输出结果工具类
package com.example.nettytest.nio.day1; import io.netty.util.internal.StringUtil; import java.nio.ByteBuffer; import static io.netty.util.internal.MathUtil.isOutOfBounds; import static io.netty.util.internal.StringUtil.NEWLINE; public class ByteBufferUtil { private static final char[] BYTE2CHAR = new char[256]; private static final char[] HEXDUMP_TABLE = new char[256 * 4]; private static final String[] HEXPADDING = new String[16]; private static final String[] HEXDUMP_ROWPREFIXES = new String[65536 >>> 4]; private static final String[] BYTE2HEX = new String[256]; private static final String[] BYTEPADDING = new String[16]; static { final char[] DIGITS = "0123456789abcdef".toCharArray(); for (int i = 0; i 4 & 0x0F]; HEXDUMP_TABLE[(i
关注打赏
最近更新
- 深拷贝和浅拷贝的区别(重点)
- 【Vue】走进Vue框架世界
- 【云服务器】项目部署—搭建网站—vue电商后台管理系统
- 【React介绍】 一文带你深入React
- 【React】React组件实例的三大属性之state,props,refs(你学废了吗)
- 【脚手架VueCLI】从零开始,创建一个VUE项目
- 【React】深入理解React组件生命周期----图文详解(含代码)
- 【React】DOM的Diffing算法是什么?以及DOM中key的作用----经典面试题
- 【React】1_使用React脚手架创建项目步骤--------详解(含项目结构说明)
- 【React】2_如何使用react脚手架写一个简单的页面?