NIO编程学习记录

news/2025/1/11 22:43:59/

NIO编程

目录

  1. 最基本的NIO编程…
  2. 使用Selector优化NIO编程…
  3. 使用多线程,优化Selector…

1、最基本的NIO编程

通过不停的轮询,来查看是否有请求。

public class Server1 {public static void main(String[] args) throws IOException {ByteBuffer byteBuffer = ByteBuffer.allocate(16);//ServerSocketChannel ssc = ServerSocketChannel.open();ssc.configureBlocking(false);ssc.bind(new InetSocketAddress(8080));List<SocketChannel> channels = new ArrayList<>();while (true) {SocketChannel sc = ssc.accept();if (sc != null) {channels.add(sc);}for (SocketChannel channel : channels) {channel.read(byteBuffer);byteBuffer.flip();System.out.println(Charset.defaultCharset().decode(byteBuffer).toString());byteBuffer.clear();}}}
}

2、通过Selector实现NIO编程

public class Server2 {public static void main(String[] args) throws IOException {     // 0. 创建、 配置链接ServerSocketChannel ssc = ServerSocketChannel.open();ssc.configureBlocking(false);ssc.bind(new InetSocketAddress(8080));// 1. 创建SelectorSelector selector = Selector.open();// 2. 建立 selector 和 channel 之间的联系 (注册)SelectionKey sscKey = ssc.register(selector, 0, null);// 3. 设置 SelectionKey 关注事件sscKey.interestOps(SelectionKey.OP_ACCEPT);while (true) {// 4. 调用selector方法// selector 方法: 如果有事件,就继续执行后续代码, 如果没有事件,就阻塞;有未处理事件,不会阻塞selector.select();// 5. 处理事件Iterator<SelectionKey> iter = selector.selectedKeys().iterator();while (iter.hasNext()) {SelectionKey key = iter.next();// 手动删除 已经处理完事件的key !!!iter.remove();System.out.println("key: " + key);// 区分事件类型if (key.isAcceptable()) {ServerSocketChannel channel = (ServerSocketChannel) key.channel();// key.cancel(); // 不想处理,取消事件// 6. 注册 SocketChannelSocketChannel sc = channel.accept();sc.configureBlocking(false);SelectionKey scKey = sc.register(selector, 0, null);scKey.interestOps(SelectionKey.OP_READ);System.out.println("建立链接:" + sc);}else if (key.isReadable()) {try {SocketChannel channel = (SocketChannel) key.channel();ByteBuffer byteBuffer = ByteBuffer.allocate(16);/*如果正常退出,read = -1*/int read = channel.read(byteBuffer);if (read == -1) {key.cancel();}else {// 未处理消息byteBuffer.flip();System.out.println(Charset.defaultCharset().decode(byteBuffer).toString());}} catch (IOException e) {e.printStackTrace();key.cancel();}}else {System.out.println("others");}}}
}

3、使用多线程,优化Selector方案

public class Server5 {public static void main(String[] args) throws IOException {// 设置当前线程名Thread.currentThread().setName("boss");// 设置 Selector bossSelector boss = Selector.open();// 设置 ServerSocketChannelServerSocketChannel ssc = ServerSocketChannel.open();ssc.configureBlocking(false);ssc.bind(new InetSocketAddress(1234));SelectionKey bossKey = ssc.register(boss, 0, null);bossKey.interestOps(SelectionKey.OP_ACCEPT);// 1. 创建 Worker// Worker worker0 = new Worker("worker-0");// Worker[] workers = new Worker[2];// 获取CPU的核心数Worker[] workers = new Worker[Runtime.getRuntime().availableProcessors()];// 在docker中 容器不是物理隔离的,会拿到cpu的个数,而不是容器申请时的个数。for (int i = 0; i < workers.length; i++) {workers[i] = new Worker("worker-" + i);}AtomicInteger index = new AtomicInteger();while (true){boss.select();Iterator<SelectionKey> iterator = boss.selectedKeys().iterator();while (iterator.hasNext()) {SelectionKey key = iterator.next();iterator.remove();if (key.isAcceptable()) {ServerSocketChannel channel = (ServerSocketChannel) key.channel();SocketChannel sc = channel.accept();sc.configureBlocking(false);System.out.println("connected..." +  sc.getRemoteAddress());// 2. 关联 worker//round robin 负载均衡workers[index.getAndIncrement() % workers.length].register(sc);// worker0.register(sc);}}}}static class Worker implements Runnable{private Thread thread;private Selector selector;private String name;private volatile boolean start = false; // 还未初始化public ConcurrentLinkedQueue<Runnable> queue = new ConcurrentLinkedQueue<>();public Worker(String name) {this.name = name;}public void register(SocketChannel sc) throws IOException {if (!start) {selector = Selector.open();thread = new Thread(this, name);thread.start();start = true;}queue.add(()->{try {sc.register(selector, SelectionKey.OP_READ, null);} catch (ClosedChannelException e) {e.printStackTrace();}});selector.wakeup(); // 唤醒 select() 方法// 方法二: 更简单的方法, 在这个进行注册// sc.register(selector, SelectionKey.OP_READ, null);}@Overridepublic void run() {while (true) {try {selector.select();Runnable task = queue.poll();if (task != null) {task.run(); // 在这个位置执行注册}Iterator<SelectionKey> iterator = selector.selectedKeys().iterator();while (iterator.hasNext()) {SelectionKey key = iterator.next();iterator.remove();if (key.isReadable()) {ByteBuffer buffer = ByteBuffer.allocate(16);SocketChannel channel = (SocketChannel) key.channel();channel.read(buffer);buffer.flip();System.out.println(Charset.defaultCharset().decode(buffer));}}} catch (IOException e) {e.printStackTrace();}}}}
}

http://www.ppmy.cn/news/246498.html

相关文章

你的键盘上有boss key吗

在电脑和网络无处不在的现代社会&#xff0c;工作时间偶尔开小差看个电影啊&#xff0c;玩个小游戏啊之类的事情都是不可避免的。可要是正玩的起劲儿&#xff0c;老板却出现在不远处&#xff0c;这可怎么好呢&#xff1f;只见人家不慌不忙手指轻点下键盘&#xff0c;屏幕马上变…

使用多线程优化NIO

文章目录 前言一、使用队列共享资源二、模拟多worker 前言 NIO是一个Selector同时轮询多个Channel&#xff0c;监听读写事件。我们可以使用多线程来处理。多个Selector线程&#xff0c;多个处理读写的线程。 让boss线程专门处理accept事件。 worker线程来处理读事件。但是这…

因为无聊 自己写的一个 TXT小说阅读器 PC版(winfrom)

应为无聊 自己写的一个 TXT小说阅读器&#xff0c;支持老板键&#xff0c;自动贴边隐藏&#xff0c;划水神器^^ 主要特色&#xff1a; ①支持拖拽txt文件到阅读器中自动打开txt文件&#xff0c;主要代码&#xff1a; //拖拽TXT文件到窗体并加载TXT文件private void Form1_Dra…

基于Redis的分布式锁实现方案

1.分布式锁简介 简单来说&#xff0c;分布式锁是针对集群环境下多台机器竞争公共资源提出的方案。 单机环境下&#xff0c;线程共享堆内存&#xff0c;jdk提供了同步机制来应对资源竞争&#xff0c;比如synchronized关键字&#xff0c;AQS队列同步器等&#xff0c;只要我们设…

Netty由浅入深的学习指南(NIO基础)

本章节会重点讲解NIO的Selector、ByteBuffer和Channel三大组件。NIO即非阻塞IO。 1.1 三大组件 1.1.1 Channel(通道) & Buffer(缓冲区) ​ channel有一点类似于stream&#xff0c;他就是读写数据的双向通道&#xff0c;可以从channel将数据读入buffer,也可以将buffer的数…

NIO基础,帮助入门Netty

NIO基础 1、三大组件1.1 Channel & Buffer1.2 Selector 2.ByteBuffer2.1ByteBuffer正确使用2.2 ByteBuffer结构2.3 ByteBuffer 常用方法调试工具类分配空间向buffer中写入数据从buffer中读取数据代码演示get(),get(int i),allocate(),mark(),reset()方法的使用字符串和Byte…

Day76-Netty

title: Day76-Netty date: 2021-07-23 18:03:30 author: Liu_zimo NIO基础 non-blocking io 非阻塞io 三大组件 通道&#xff08;Channel&#xff09;、缓冲区&#xff08;Buffer&#xff09;、选择器&#xff08;Selector&#xff09; Channel & Buffer channel有点类…

NIO多路复用之Selector的使用

Selector的使用 文章目录 Selector的使用一、阻塞 & 非阻塞1. 阻塞2. 非阻塞 二、selector 介绍及常用API1. 多路复用2. 常用API 三、处理 accept 事件四、处理 read 事件1. 为什么事件必须删除2. 处理客户端断开问题2.1 客户端强制断开2.2 客户端正常断开 3. 处理消息边界…