站长资讯网
最全最丰富的资讯网站

Java NIO非阻塞服务器示例

以前一直用的是“ervery thread per
connection”的服务器端模式,今天试了下NIO非阻塞模式的服务器。

    以前一直用的是“ervery thread per connection”的服务器端模式,今天试了下NIO非阻塞模式的服务器。
    不过java不能实现I/O完成端口模型,这点很遗憾。

                     
    1. package com.vista.Server;
    2. import java.io.IOException;
    3. import java.net.InetSocketAddress;
    4. import java.net.ServerSocket;
    5. import java.nio.ByteBuffer;
    6. import java.nio.channels.SelectionKey;
    7. import java.nio.channels.Selector;
    8. import java.nio.channels.ServerSocketChannel;
    9. import java.nio.channels.SocketChannel;
    10. import java.util.Iterator;
    11. import java.util.LinkedList;
    12. import java.util.Set;
    13. public class SelectorServer
    14. {
    15. private static int DEFAULT_SERVERPORT = 6018;//默认端口
    16. private static int DEFAULT_BUFFERSIZE = 1024;//默认缓冲区大小为1024字节
    17. private ServerSocketChannel channel;
    18. private LinkedList<SocketChannel> clients;
    19. private Selector readSelector;
    20. private ByteBuffer buffer;//字节缓冲区
    21. private int port;
    22. public SelectorServer(int port) throws IOException
    23. {
    24. this.port = port;
    25. this.clients = new LinkedList<SocketChannel>();
    26. this.channel = null;
    27. this.readSelector = Selector.open();//打开选择器
    28. this.buffer = ByteBuffer.allocate(DEFAULT_BUFFERSIZE);
    29. }
    30. // 服务器程序在服务循环中调用sericeClients()方法为已接受的客户服务
    31. public void serviceClients()throws IOException
    32. {
    33. Set keys;
    34. Iterator it;
    35. SelectionKey key;
    36. SocketChannel client;
    37. // 在readSelector上调用select()方法,参数1代表如果调用select的时候 那么阻塞最多1秒钟等待可用的客户端连接
    38. if(readSelector.select(1) > 0)
    39. {
    40. keys = readSelector.selectedKeys(); // 取得代表端通道的键集合
    41. it = keys.iterator();
    42. // 遍历,为每一个客户服务
    43. while(it.hasNext())
    44. {
    45. key = (SelectionKey)it.next();
    46. if(key.isReadable())
    47. { // 如果通道可读,那么读此通道到buffer中
    48. int bytes;
    49. client = (SocketChannel)key.channel();// 取得键对应的通道
    50. buffer.clear(); // 清空缓冲区中的内容,设置好position,limit,准备接受数据
    51. bytes = client.read(buffer); // 从通道中读数据到缓冲中,返回读取得字节数
    52. if(bytes >= 0)
    53. {
    54. buffer.flip(); // 准备将缓冲中的数据写回到通道中
    55. client.write(buffer); // 数据写回到通道中
    56. }
    57. else if(bytes < 0)
    58. { // 如果返回小于零的值代表读到了流的末尾
    59. clients.remove(client);
    60. // 通道关闭时,选择键也被取消
    61. client.close();
    62. }
    63. }
    64. }
    65. }
    66. }
    67. public void registerClient(SocketChannel client) throws IOException
    68. {// 配置和注册代表客户连接的通道对象
    69. client.configureBlocking(false); // 设置此通道使用非阻塞模式
    70. client.register(readSelector, SelectionKey.OP_READ); // 将这个通道注册到选择器上
    71. clients.add(client); //保存这个通道对象
    72. }
    73. public void listen() throws IOException
    74. { //服务器开始监听端口,提供服务
    75. ServerSocket socket;
    76. SocketChannel client;
    77. channel = ServerSocketChannel.open(); // 打开通道
    78. socket = channel.socket(); //得到与通到相关的socket对象
    79. socket.bind(new InetSocketAddress(port), 10); //将scoket榜定在制定的端口上
    80. //配置通到使用非阻塞模式,在非阻塞模式下,可以编写多道程序同时避免使用复杂的多线程
    81. channel.configureBlocking(false);
    82. try
    83. {
    84. while(true)
    85. {// 与通常的程序不同,这里使用channel.accpet()接受客户端连接请求,而不是在socket对象上调用accept(),这里在调用accept()方法时如果通道配置为非阻塞模式,那么accept()方法立即返回null,并不阻塞
    86. client = channel.accept();
    87. if(client != null)
    88. {
    89. registerClient(client); // 注册客户信息
    90. }
    91. serviceClients(); // 为以连接的客户服务
    92. }
    93. }
    94. finally
    95. {
    96. socket.close(); // 关闭socket,关闭socket会同时关闭与此socket关联的通道
    97. }
    98. }
    99. public static void main(String[] args) throws IOException
    100. {
    101. System.out.println(“服务器启动”);
    102. SelectorServer server = new SelectorServer(SelectorServer.DEFAULT_SERVERPORT);
    103. server.listen(); //服务器开始监听端口,提供服务
    104. }
    105. }
     

    修改版本:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
    1. package com.vista.Server;
    2. import java.io.BufferedWriter;
    3. import java.io.FileInputStream;
    4. import java.io.IOException;
    5. import java.io.OutputStreamWriter;
    6. import java.io.PrintWriter;
    7. import java.net.InetSocketAddress;
    8. import java.net.ServerSocket;
    9. import java.nio.ByteBuffer;
    10. import java.nio.CharBuffer;
    11. import java.nio.channels.FileChannel;
    12. import java.nio.channels.SelectionKey;
    13. import java.nio.channels.Selector;
    14. import java.nio.channels.ServerSocketChannel;
    15. import java.nio.channels.SocketChannel;
    16. import java.nio.charset.Charset;
    17. import java.nio.charset.CharsetDecoder;
    18. import java.util.Iterator;
    19. import java.util.LinkedList;
    20. import java.util.Set;
    21. public class SelectorServer
    22. {
    23. private static int DEFAULT_SERVERPORT = 6018;//默认端口
    24. private static int DEFAULT_BUFFERSIZE = 1024;//默认缓冲区大小为1024字节
    25. private static String DEFAULT_CHARSET = “GB2312”;//默认码集
    26. private static String DEFAULT_FILENAME = “bigfile.dat”;
    27. private ServerSocketChannel channel;
    28. private LinkedList<SocketChannel> clients;
    29. private Selector selector;//选择器
    30. private ByteBuffer buffer;//字节缓冲区
    31. private int port;
    32. private Charset charset;//字符集
    33. private CharsetDecoder decoder;//解码器
    34. public SelectorServer(int port) throws IOException
    35. {
    36. this.port = port;
    37. this.clients = new LinkedList<SocketChannel>();
    38. this.channel = null;
    39. this.selector = Selector.open();//打开选择器
    40. this.buffer = ByteBuffer.allocate(DEFAULT_BUFFERSIZE);
    41. this.charset = Charset.forName(DEFAULT_CHARSET);
    42. this.decoder = this.charset.newDecoder();
    43. }
    44. private class HandleClient
    45. {
    46. private String strGreeting = “welcome to VistaQQ”;
    47. public HandleClient() throws IOException
    48. {
    49. }
    50. public String readBlock()
    51. {//读块数据
    52. return this.strGreeting;
    53. }
    54. public void close()
    55. {
    56. }
    57. }
    58. protected void handleKey(SelectionKey key) throws IOException
    59. {//处理事件
    60. if (key.isAcceptable())
    61. { // 接收请求
    62. ServerSocketChannel server = (ServerSocketChannel) key.channel();//取出对应的服务器通道
    63. SocketChannel channel = server.accept();
    64. channel.configureBlocking(false);
    65. channel.register(selector, SelectionKey.OP_READ);//客户socket通道注册读操作
    66. }
    67. else if (key.isReadable())
    68. { // 读信息
    69. SocketChannel channel = (SocketChannel) key.channel();
    70. int count = channel.read(this.buffer);
    71. if (count > 0)
    72. {
    73. this.buffer.flip();
    74. CharBuffer charBuffer = decoder.decode(this.buffer);
    75. System.out.println(“Client >>” + charBuffer.toString());
    76. SelectionKey wKey = channel.register(selector,
    77. SelectionKey.OP_WRITE);//为客户sockt通道注册写操作
    78. wKey.attach(new HandleClient());
    79. }
    80. else
    81. {//客户已经断开
    82. channel.close();
    83. }
    84. this.buffer.clear();//清空缓冲区
    85. }
    86. else if (key.isWritable())
    87. { // 写事件
    88. SocketChannel channel = (SocketChannel) key.channel();
    89. HandleClient handle = (HandleClient) key.attachment();//取出处理者
    90. ByteBuffer block = ByteBuffer.wrap(handle.readBlock().getBytes());
    91. channel.write(block);
    92. // channel.socket().getInputStream().(block);
    93. // PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(
    94. // channel.socket().getOutputStream())), true);
    95. // out.write(block.toString());
    96. }
    97. }
    98. public void listen() throws IOException
    99. { //服务器开始监听端口,提供服务
    100. ServerSocket socket;
    101. channel = ServerSocketChannel.open(); // 打开通道
    102. socket = channel.socket(); //得到与通到相关的socket对象
    103. socket.bind(new InetSocketAddress(port)); //将scoket榜定在制定的端口上
    104. //配置通到使用非阻塞模式,在非阻塞模式下,可以编写多道程序同时避免使用复杂的多线程
    105. channel.configureBlocking(false);
    106. channel.register(selector, SelectionKey.OP_ACCEPT);
    107. try
    108. {
    109. while(true)
    110. {// 与通常的程序不同,这里使用channel.accpet()接受客户端连接请求,而不是在socket对象上调用accept(),这里在调用accept()方法时如果通道配置为非阻塞模式,那么accept()方法立即返回null,并不阻塞
    111. this.selector.select();
    112. Iterator iter = this.selector.selectedKeys().iterator();
    113. while(iter.hasNext())
    114. {
    115. SelectionKey key = (SelectionKey)iter.next();
    116. iter.remove();
    117. this.handleKey(key);
    118. }
    119. }
    120. }
    121. catch(IOException ex)
    122. {
    123. ex.printStackTrace();
    124. }
    125. }
    126. public static void main(String[] args) throws IOException
    127. {
    128. System.out.println(“服务器启动”);
    129. SelectorServer server = new SelectorServer(SelectorServer.DEFAULT_SERVERPORT);
    130. server.listen(); //服务器开始监听端口,提供服务
    131. }
    132. }
     

    赞(0)
    分享到: 更多 (0)
    网站地图   沪ICP备18035694号-2    沪公网安备31011702889846号