Java 异步io

在java 的NIO 里没有实现 Asynchronous   IO. 所以,实现proactor模式是比较困难的。虽然,过去IBM alpha work 和MANA 都有自己的实现,但是比较不是标准,而且其实现方式并不是jvm直接支持的。不过现在好了,java 7里要加入JSR-000203,以后java也可以做异步io了。
Java 中实现异步 IO 下载,通常可以使用 `java.nio` 包中的 `AsynchronousFileChannel` 类,结合 `Future` 或 `CompletableFuture` 来实现非阻塞的文件下载操作。此外,也可以使用 `HttpClient`(Java 11 引入)配合异步请求来实现网络下载任务。 ### 使用 `AsynchronousFileChannel` 实现本地异步文件写入 `AsynchronousFileChannel` 支持异步读写文件,适用于大文件处理。以下是一个异步写入文件的示例: ```java import java.io.*; import java.nio.*; import java.nio.channels.*; import java.util.concurrent.*; public class AsyncFileWrite { public static void main(String[] args) throws Exception { String content = "This is asynchronous file writing example."; Path path = Paths.get("async_output.txt"); AsynchronousFileChannel channel = AsynchronousFileChannel.open( path, StandardOpenOption.WRITE, StandardOpenOption.CREATE); ByteBuffer buffer = ByteBuffer.allocate(1024); buffer.put(content.getBytes()); buffer.flip(); Future<Integer> future = channel.write(buffer, 0); future.get(); // 等待写入完成 channel.close(); } } ``` ### 使用 `HttpClient` 实现异步 HTTP 下载 Java 11 引入了 `HttpClient`,支持同步和异步的 HTTP 请求。结合 `CompletableFuture` 可以实现异步下载文件并保存到本地。 ```java import java.net.*; import java.net.http.*; import java.io.*; import java.nio.channels.*; import java.nio.file.*; import java.util.concurrent.*; public class AsyncDownload { public static void main(String[] args) throws Exception { HttpClient client = HttpClient.newHttpClient(); URI uri = new URI("https://example.com/sample.txt"); Path target = Paths.get("downloaded_file.txt"); client.sendAsync(HttpRequest.newBuilder(uri).build(), HttpResponse.BodyHandlers.ofFile(target)) .thenApply(HttpResponse::statusCode) .thenAccept(System.out::println) .join(); } } ``` ### 异步 IO 的优势 Java异步 IO(NIO 2.0)提供了非阻塞 IO 操作的能力,特别适合高并发网络或文件处理场景。与传统的阻塞式 IO 相比,异步 IO 能够显著减少线程切换开销,提高系统吞吐量[^1]。通过 `CompletableFuture` 和 `Future`,可以更灵活地管理异步任务的执行与回调。 ### 批量异步下载多个文件 可以使用 `CompletableFuture.allOf()` 来并发执行多个异步下载任务: ```java public class MultiAsyncDownload { public static void main(String[] args) throws Exception { List<String> urls = List.of( "https://example.com/file1.txt", "https://example.com/file2.txt" ); List<CompletableFuture<Void>> downloads = urls.stream() .map(url -> CompletableFuture.runAsync(() -> { try { HttpClient client = HttpClient.newHttpClient(); Path target = Paths.get(new File(url).getName()); client.send(HttpRequest.newBuilder(new URI(url)).build(), HttpResponse.BodyHandlers.ofFile(target)); } catch (Exception e) { e.printStackTrace(); } })) .toList(); CompletableFuture.allOf(downloads.toArray(new CompletableFuture[0])).join(); } } ``` ### 注意事项 - 在使用 `HttpClient` 时,应确保目标 URL 的有效性,并处理可能出现的异常。 - 对于大文件下载,建议使用流式处理,避免一次性加载整个文件到内存。 - 异步任务执行过程中,应合理管理线程池和资源释放,防止资源泄露。 ---
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值