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使用示例的主要内容,如果未能解决你的问题,请参考以下文章

nio使用示例

Java NIO- Selector 使用示例

Netty——NIO(Selector处理read事件)代码示例

Netty——NIO(Selector处理read事件)代码示例

Netty——网络编程 NIO(Selector处理read事件)代码示例

RPC高性能框架总结3.NIO示例代码编写和简析