nio使用示例
Posted lovoo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nio使用示例相关的知识,希望对你有一定的参考价值。
1、使用nio channel实现数据的读写
public static void nioChannel() throws Exception
String content = "hello, wys is beautiful views";
FileOutputStream fos = new FileOutputStream("d:\\\\test.txt");
FileChannel channel = fos.getChannel();
ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
byteBuffer.put(content.getBytes());
byteBuffer.flip();
channel.write(byteBuffer);
fos.close();
以上是关于nio使用示例的主要内容,如果未能解决你的问题,请参考以下文章
Netty——NIO(Selector处理read事件)代码示例
Netty——NIO(Selector处理read事件)代码示例