最简单的双select模式,一个用来接收请求连接,一个请求读写
package nio;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.ServerSocket;
import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
import java.util.Iterator;
import java.util.Set;
public class NIOServer {
private ByteBuffer recBf = ByteBuffer.allocate(1024);
private Selector selector;//接收select
private Selector proccessor;//读写
public NIOServer(){
try {
ServerSocketChannel ssc = ServerSocketChannel.open();
ssc.configureBlocking(false);
ServerSocket ss = ssc.socket();
ss.bind(new InetSocketAddress(8888));
selector = Selector.open();
ssc.register(selector, SelectionKey.OP_ACCEPT);
System.out.println("start 8888");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
class Handler extends Thread{
public Handler(String name,SocketChannel client){
try {
if(proccessor == null){
proccessor =Selector.open();
}
client.register(proccessor, SelectionKey.OP_READ);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
this.setName(name);
}
public void run(){
System.out.println("begin run");
try {
while(proccessor.select()>0){
Set<SelectionKey> selectedKeys = proccessor.selectedKeys();
Iterator<SelectionKey> it = selectedKeys.iterator();
while(it.hasNext()){
SelectionKey sk = it.next();
it.remove();
handler(sk);
}
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public void startAcceptor(){
try {
while(selector.select()>0){
Set<SelectionKey> keys = selector.selectedKeys();
Iterator<SelectionKey> it = keys.iterator();
while(it.hasNext()){
SelectionKey sk = it.next();
it.remove();
handler(sk);
}
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
private void handler(SelectionKey sk){
ServerSocketChannel service;
SocketChannel client =null;
if(sk.isAcceptable()){
service = (ServerSocketChannel) sk.channel();
try {
client = service.accept();
client.configureBlocking(false);
new Handler("s",client).start();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if(sk.isReadable()){
client = (SocketChannel)sk.channel();
recBf.clear();
try {
int count = client.read(recBf);
if(count>0){
System.out.print(new String(recBf.array(),0,count));
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public static void main(String[]a){
NIOServer n = new NIOServer();
n.startAcceptor();
}
}
window 下,运行cmd ,telnet localhost 8888 即可测试。
分享到:
相关推荐
本实例"socket通信NIO代理模式demo"将展示如何利用NIO来构建一个高性能的代理服务器。 代理模式是一种设计模式,它允许我们创建一个代理对象来控制对原对象的访问。在NIO代理模式中,代理服务器作为客户端与目标...
NIO(Non-blocking Input/Output)是Java中的一个编程模型,用于处理大量的并发连接,尤其适用于高负载和高可用性的系统。在Netty中,NIO被用来实现高效的网络通信。 NIO的核心概念包括通道(Channel)、缓冲区...
在Java编程领域,NIO(Non-blocking Input/Output,非阻塞I/O)是一种重要的I/O模型,相较于传统的BIO(Blocking I/O),NIO提供了更高效的数据传输方式,尤其适用于高并发、低延迟的场景。本Demo展示了如何在服务端...
在这个“Nio非阻塞socket通信demo”中,我们可以深入理解NIO在Socket通信中的应用。 1. **Java NIO基础** - **通道(Channels)**:NIO的核心概念之一,通道是数据读写的目标或来源,如文件通道、套接字通道等。...
Java NIO,全称为Non-Blocking Input/Output(非阻塞输入/输出),是Java标准库提供的一种替代传统I/O(BIO)模型的新技术。NIO在Java 1.4版本中引入,旨在提高I/O操作的效率,特别是在处理大量并发连接时。与传统的...
**NIO(New Input/Output)是Java提供的一种非阻塞I/O模型,与传统的BIO(Block I/O)相比,NIO具有更高的并发性能,尤其适用于处理大量连接的服务器端应用。本项目"nio-demo"是针对NIO编程的一个演示,通过一系列...
"异步长连接"是Java Socket编程中一种高效且广泛使用的通信模式,它允许客户端和服务器保持连接状态,以便在需要时快速交换数据,而无需反复建立和关闭连接。 在Java中,通常使用`java.net.Socket`和`java.net....
6. **NIO 和 EPOLL**:Netty 支持 Java NIO 以及 Linux 系统的 EPOLL(用于高性能的事件通知)。EPOLL 特别适合大并发场景,因为它的性能和可扩展性都优于传统的 Select 和 Poll。 7. **心跳与超时机制**:Netty ...
The directory <Java home>/demo/nio/zipfs/ contains samples that demonstrate the NIO.2 NFS (Network File System) file system. Networking The URLClassLoader.close method has been added; see Closing a ...
例如,在Java中,可以使用`java.io.FileInputStream`和`java.nio`包中的`ByteBuffer`来读取图片文件,并将内容转化为字节流。 ```java File file = new File("image.jpg"); FileInputStream fis = new ...
它提供了DOM(文档对象模型)的API,使得开发者可以像操作DOM一样对网页进行选择、遍历和修改。在本实例中,jsoup可能被用来抓取网页上的PDF链接,以便后续下载和处理PDF文件。例如,我们可以使用jsoup的`Document`...
// - For custom raw processing of data, createBuffer() returns an NIO direct // buffer wrapped around the memory pointed by imageData, and under Android we can // also use that Buffer with Bitmap....