Java NIO之十 使用UDP协议实现非阻塞式IO操作: DatagramChannel

本文详细介绍了NIO(Non-blocking I/O)的核心理论及其在UDP协议下的应用实例。通过两个具体示例,演示了如何使用Java NIO进行非阻塞发送与接收数据包,包括设置DatagramChannel为非阻塞模式、数据缓冲区操作及选择器的使用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

NIO核心理论

NIO核心理论
基于TCP/IP非阻塞NIO的写法

基于UDP协议的NIO的Demo

注:实际使用时必须用try-catch-finally

public class TestNonBlockingNIO2 {
	
	@Test
	public void send() throws IOException{
		
		DatagramChannel dc = DatagramChannel.open();
		
		dc.configureBlocking(false);
		
		ByteBuffer buf = ByteBuffer.allocate(1024);
		
		Scanner scan = new Scanner(System.in);
		
		while(scan.hasNext()) {
			String str = scan.next();
			buf.put((new Date().toString() + "\n" + str).getBytes());
			buf.flip();
			dc.send(buf, new InetSocketAddress("127.0.0.1", 9898));
			buf.clear();
		}
		dc.close();
	}
	
	@Test 
	public void receive() throws IOException {
		
		DatagramChannel dc = 	DatagramChannel.open();
		
		dc.configureBlocking(false);
		
		dc.bind(new InetSocketAddress(9898));
		
		Selector selector = Selector.open();
		
		dc.register(selector, SelectionKey.OP_READ);
		
		while(selector.select() > 0) {
			
			Iterator<SelectionKey> it = selector.selectedKeys().iterator();
			
			while(it.hasNext()) {
				SelectionKey sk = it.next();
				
				if(sk.isReadable()) {
					
					ByteBuffer buf = ByteBuffer.allocate(1024);
					
					dc.receive(buf);
					buf.flip();
					System.out.println(new String(buf.array(),0, buf.limit()));
					buf.clear();
				}
				
				it.remove();
			}
		}
		
	}
}

在这里插入图片描述

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值