package io_test;
import java.io.File;
import java.io.FileInputStream;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
public class TestNIO {
public static void main(String[] args) {
// File.separator==D:\\test\\hello.txt
String fileName = "D:" + File.separator + "test" + File.separator + "hello.txt";
testNIO(fileName);
}
private static void testNIO(String fileName) {
FileInputStream fin;
try {
fin = new FileInputStream(fileName);
// 获取通道
FileChannel fc = fin.getChannel();
// 创建一个缓冲区
ByteBuffer buffer = ByteBuffer.allocate(1024);
// 将数据从通道读到缓冲区中
fc.read(buffer);
// 将数据从缓冲区中拿出来
String input = new String(buffer.array()).trim();
System.out.println(input);
} catch (Exception e) {
e.printStackTrace();
}
}
}
相关文章
- 04-05postgres elasticsearch fdw 学习
- 04-0520200228 尚硅谷-NIO
- 04-05netty学习笔记(一)
- 04-05面试官:小伙子我们先来详细的好好聊一聊NIO的三大组件
- 04-05NIO阻塞式2
- 04-05NIO学习demo
- 04-05I/O流(3)-NIO
- 04-05Android 开发学习进程0.28 腾讯TBS接入和相关问题
- 04-05python学习:函数的学习
- 04-05NIO:NIO综合通道测试