- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
AIO 是自 JDK 1.7 开始提供,本质是对 NIO 中 Channel 进行的一些扩展,因此 AIO 也称为 NIO.2。具体地讲,AIO 就是在 NIO 的基础上,新增加了下表的 3个 Channel 实现类,这 3 个类也称为异步通道。
| <br>异步通道<br> | <br>简介<br> |
| <br>AsynchronousFileChannel<br> | <br>用于文件的异步读写<br> |
| <br>AsynchronousServerSocketChannel<br> | <br>服务端异步 socket 通道<br> |
| <br>AsynchronousSokectChannel<br> | <br>客户端异步 socket 通道<br> |
NIO 是同步非阻塞方式的 I/O,而 AIO 是异步非阻塞方式的 I/O。以服务端读取客户端的数据为例,服务端使用 NIO 和 AIO 的区别如下所示。
AIO 可以通过 "Future模式" 和 "回调函数"两种方式来实现。
package aio;
import java.nio.ByteBuffer;
import java.nio.channels.AsynchronousFileChannel;
import java.nio.channels.CompletionHandler;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.util.concurrent.Future;
public class AIODemo {
// Future模式:读
public static void test1() throws Exception {
Path filePath = Paths.get("g:\\abc.txt");
AsynchronousFileChannel channel = AsynchronousFileChannel.open(filePath);
// 定义一个buffer,用于存放文件的内容
ByteBuffer buffer = ByteBuffer.allocate(1024);
/*
1 read()的作用
将 abc.txt 通过 channel 读入 buffer 中(从第0位开始读取)
2.read()是一个异步的方法:
(1)会开启一个新线程,并且在这个新线程中读取文件;新线程将文件内容读取完毕前提
a future.isDone() 的返回值为 true
b future.get() 方法不再阻塞
(2)其他线程(此时的main线程)可以执行其他事情
*/
Future<Integer> future = channel.read(buffer, 0);
while (!future.isDone()) {
System.out.println("在 read() 的同时,可以处理其他事情...");
}
// future.get():
// 1 如果读取文件的线程 将文件内容读取完毕,则 get() 会返回读取到的字节数;
// 2 如果没有读取完毕 get() 方法会一直阻塞;
Integer readNumber = future.get();
buffer.flip();
String data = new String(buffer.array(), 0, buffer.limit());
System.out.println("read number:" + readNumber);
System.out.println(data);
}
// 回调模式:读
public static void test2() throws Exception {
Path path = Paths.get("g:\\abc.txt");
AsynchronousFileChannel channel = AsynchronousFileChannel.open(path, StandardOpenOption.READ);
ByteBuffer buffer = ByteBuffer.allocate(1024);
// 在read() 方法将文件全部读取到 buffer 之前,main 线程可以异步进行其他操作
channel.read(buffer, 0, null, new CompletionHandler<Integer, ByteBuffer>() {
@Override
public void completed(Integer result, ByteBuffer attachment) {
buffer.flip();
String data = new String(buffer.array(), 0, buffer.limit());
System.out.println(data);
System.out.println("read() 完毕!");
}
@Override
public void failed(Throwable e, ByteBuffer attachment) {
System.out.println("异常...");
}
});
while (true) {
System.out.println("在 read() 完毕以前,可以异步处理其他事情...");
Thread.sleep(100);
}
}
// Future模式:写
public static void test3() throws Exception {
Path path = Paths.get("d:\\abc3.txt");
AsynchronousFileChannel fileChannel =
AsynchronousFileChannel.open(path, StandardOpenOption.WRITE, StandardOpenOption.CREATE_NEW);
ByteBuffer buffer = ByteBuffer.allocate(1024);
long position = 0;
buffer.put("hello world".getBytes());
buffer.flip();
Future<Integer> future = fileChannel.write(buffer, position);
buffer.clear();
while (!future.isDone()) {
System.out.println("other thing....");
}
Integer result = future.get();
System.out.println("写完毕!共写入字节数:" + result);
}
// 回调模式:写
public static void test4() throws Exception {
Path path = Paths.get("d:\\abc4.txt");
AsynchronousFileChannel fileChannel =
AsynchronousFileChannel.open(path, StandardOpenOption.WRITE, StandardOpenOption.CREATE_NEW);
ByteBuffer buffer = ByteBuffer.allocate(1024);
buffer.put("hello the world".getBytes());
buffer.flip();
fileChannel.write(buffer, 0, null, new CompletionHandler<Integer, ByteBuffer>() {
@Override
public void completed(Integer result, ByteBuffer attachment) {
System.out.println("写完毕!共写入的字节数: " + result);
}
@Override
public void failed(Throwable exc, ByteBuffer attachment) {
System.out.println("发生了异常...");
}
});
for (; ; ) {
System.out.println("other things...");
Thread.sleep(1000);
}
}
public static void main(String[] args) throws Exception {
test4();
}
}
在 read() 的同时,可以处理其他事情...
read number:5
hello
在 read() 完毕以前,可以异步处理其他事情...
hello
read() 完毕!
在 read() 完毕以前,可以异步处理其他事情...
在 read() 完毕以前,可以异步处理其他事情...
在 read() 完毕以前,可以异步处理其他事情...
在 read() 完毕以前,可以异步处理其他事情...
在 read() 完毕以前,可以异步处理其他事情...
在 read() 完毕以前,可以异步处理其他事情...
other thing....
写完毕!共写入字节数:11
other things...
写完毕!共写入的字节数: 15
other things...
other things...
other things...
我需要将数据从一个表传输到另一台已截断的服务器中的同一个表。最简单的方法是什么? 最佳答案 设置 linked servers然后在目标数据库上使用以下内容: INSERT INTO existing
我尝试从 mysql 服务器获取数据到 ms sql 服务器。我已经在本地主机(使用 ODBC 连接器)中完成了这个过程。 但是现在这些服务器作为在线数据库托管。谁能告诉我这样做的方法吗? 我想我不能
我有一个论坛在这里或http://neue.st/index.php 我想将数据从该论坛转移到不同目录中的新论坛http://neue.st/forums 我也只想选择要传输的数据,例如用户、帖子、主
我正在 Android 操作系统上开发 BLE 应用程序。我必须通过我的应用程序在 BLE 硬件上写入数据。我对必须发送的传输数据的类型感到困惑。下面的图像显示了我必须发送的字节数据。对于每个字节,它
我正在尝试将 RabbitMQ 用于分布式系统,其工作原理如下: 生产者将 JSON 格式的订单 ID 列表放入队列 多个消费者从该队列中取出,使用该订单 ID 执行业务逻辑,并将结果(JSON 格式
我正在将 ARM ComputeLibrary 集成到一个项目中。 这不是我所熟悉的语义的 API,但我正在研究文档和示例。 目前,我正在尝试将 std::vector 的内容复制到 CLTensor
我正在使用面向连接的 channel 开发 BLE 应用程序。我使用 nordic semiconductor nrf52 作为外围设备,iPhone 6 作为中央管理器。 我使用了蓝牙 SIG 提供
我有一个 redis 数据库、logstash 和两个 elasticsearch 和一个 influxdb。我正在将 key 从 redis 传输到 elasticsearch,它工作正常并且想测试
例如,我们在master1上运行一个主节点 在server2,server3上运行的两个数据节点 我们说分片重定位发生在server2到server3之间 现在要复制数据文件夹,elasticsear
基本上,我想做的是创建一个方法,可以采用任何数据类型,并将其转换为 php 识别的数据或 JSON。假设我想传递一个数组、一个二维数组或只是一些基本字符串。我会调用这个函数,传入参数并将其发送到 ph
我们在 UI 中使用 JSF,在业务层中使用 Spring,在持久层中使用 Hibernate。现在我的问题是如何将数据从 JSF UI 传递到 Spring 业务层。我可以直接在支持 bean 中使
我正在构建一个 android 应用程序(使用 java 1.6) - 这是实际的客户端 它向 Windows 计算机发送和接收数据,该计算机托管使用 networkStream 和 socket T
我将编写一个对用户输入使用react并将用户输入数据发送到服务器的应用程序。如果没有互联网连接,应用程序将批量数据并尽快发送。加密并不重要,因为只是发送了一堆关键信息,如果没有相应的真实数据,这些信息
我知道 Javascriptbridge 可以将数据从 js 发送到 tizen。 Is there any way to pass data from native to javascript 最佳
几年前,我编写了一个小实用程序,用于将数据从 Oracle 数据库移动到 Postgres 数据库。我使用 Java 和 JDBC 来完成此任务,因为我希望 Java 处理准备好的语句中使用的数据的数
我最近加入了 Facebook(我知道我迟到了),昨晚我带着一个奇迹醒来。看起来像实时聊天模块大约每秒“寻找”新的应答消息。在我看来,这有点太快了。我不知道他们是如何设法不得到他们的服务器处于事件状态
因此,我正在使用 jdbc 与 MySQL 数据库通信。对于许多表和许多查询/ View ,我创建了一个类,它封装了表的一行或查询/表结果。对 DB 的访问返回此类的一个对象(当我确切知道只有一个匹配
我尝试创建一个在我的虚拟机中运行的程序,以便我可以将数据从目录传输到我的 azure blob 存储帐户。每当我在程序外部(在命令行上)运行该命令时,它都会起作用,但是,如果我运行包含运行该命令的子进
我正在尝试建立一个小型系统,让一台服务器(也称为传感器)在发现另一台服务器(也称为服务器)可用时将数据文件传输到另一台服务器(也称为服务器)(都运行 node.js 应用程序)。 理想情况下,服务器应
我有一个带有两个按钮和两个文本字段的 DialogFragment。 我只希望当我在两个文本字段中输入数据并按下“确定”按钮时,它可以匹配两个字段的数据并将结果保存到 String。 Toast ms
我是一名优秀的程序员,十分优秀!