Java NIO2 异步IO支持

NIO2

从 Java 7 在之前的NIO基础上,它提供了异步 IO 操作、文件系统访问增强等诸多功能

路径(Path)接口

Path 接口代表了文件系统的路径。它可以用来定位一个文件或目录。

提供了多种方法来解析、转换和查询路径信息。Paths 类提供了一些静态方法用于获取 Path 。

java 复制代码
 Path path1 = Paths.get("/home/user/documents");
 Path path2 = Paths.get("file.txt");

Files

Files 类提供了大量的静态方法来执行文件操作,比如 读取、写入、复制、删除、移动

java 复制代码
 Path sourcePath = Paths.get("source.txt");
 Path targetPath = Paths.get("target.txt");
             
Files.copy(sourcePath, targetPath);

异步 IO

相对而言这是最重要的功能,异步 IO 操作使得在处理大量 IO 任务时可以充分利用系统资源,NIO2 主要增加了 文件 和 Socket异步IO支持。

  • AsynchronousFileChannel

允许异步地从文件读取数据或向文件写入数据。

适用于需要高并发性能且不希望线程被I/O操作阻塞的情况。

  • AsynchronousSocketChannel 和 AsynchronousServerSocketChannel:

分别对应客户端和服务端的异步套接字通信,支持非阻塞模式下的连接建立、数据发送与接收。

Future 和 CompletionHandler

异步IO 主要通过 CompletionHandler 接口或 Future 对象来处理完成事件。

java 复制代码
Path path = Paths.get("data.txt");
AsynchronousFileChannel fileChannel = 
    AsynchronousFileChannel.open(path, StandardOpenOption.WRITE);

ByteBuffer buffer = ByteBuffer.allocate(1024);
long position = 0;
buffer.put("test future".getBytes());
buffer.flip();

Future<Integer> operation = fileChannel.write(buffer, position);
...
java 复制代码
Path path = Paths.get("data.txt");
hronousFileChannel fileChannel = 
    AsynchronousFileChannel.open(path, StandardOpenOption.WRITE);

ByteBuffer buffer = ByteBuffer.allocate(1024);
long position = 0;

buffer.put("test CimpletionHandler".getBytes());
buffer.flip();

fileChannel.write(buffer, position, buffer, new CompletionHandler<Integer, ByteBuffer>() {

    @Override
    public void completed(Integer result, ByteBuffer attachment) {
        System.out.println("bytes written: " + result);
    }

    @Override
    public void failed(Throwable exc, ByteBuffer attachment) {
        exc.printStackTrace();
    }
});
相关推荐
腥臭腐朽的日子熠熠生辉28 分钟前
解决maven失效问题(现象:maven中只有jdk的工具包,没有springboot的包)
java·spring boot·maven
ejinxian30 分钟前
Spring AI Alibaba 快速开发生成式 Java AI 应用
java·人工智能·spring
杉之35 分钟前
SpringBlade 数据库字段的自动填充
java·笔记·学习·spring·tomcat
圈圈编码1 小时前
Spring Task 定时任务
java·前端·spring
俏布斯1 小时前
算法日常记录
java·算法·leetcode
27669582921 小时前
美团民宿 mtgsig 小程序 mtgsig1.2 分析
java·python·小程序·美团·mtgsig·mtgsig1.2·美团民宿
爱的叹息1 小时前
Java 连接 Redis 的驱动(Jedis、Lettuce、Redisson、Spring Data Redis)分类及对比
java·redis·spring
程序猿chen1 小时前
《JVM考古现场(十五):熵火燎原——从量子递归到热寂晶壁的代码涅槃》
java·jvm·git·后端·java-ee·区块链·量子计算
松韬2 小时前
Spring + Redisson:从 0 到 1 搭建高可用分布式缓存系统
java·redis·分布式·spring·缓存
绝顶少年2 小时前
Spring Boot 注解:深度解析与应用场景
java·spring boot·后端