当前位置:   article > 正文

使用原生NIO实现一个echo服务器_用nio技术替代一客户一线程技术改写echo项目的客户机/服务器设计。

用nio技术替代一客户一线程技术改写echo项目的客户机/服务器设计。

tcp的拆包处理使用的是定长解码的方式。
服务器端:

public class EchoServer {
    public static final int port = 8888;

    public static void main(String[] args) throws IOException {
        Selector selector = Selector.open();

        ServerSocketChannel listener = ServerSocketChannel.open();
        // 绑定地址,并监听
        listener.socket().bind(new InetSocketAddress("localhost", port));

        // 设置非阻塞
        listener.configureBlocking(false);
        // 注册ACCPET事件
        listener.register(selector, SelectionKey.OP_ACCEPT);
        NIOServerConnection conn;
        while (true) {
            // 每1秒选择一次
            if (selector.select(1000) == 0) {
                System.out.print(".");
                continue;
            }

            Iterator<SelectionKey> iter = selector.selectedKeys().iterator();

            while (iter.hasNext()) {
                SelectionKey key = iter.next();
                iter.remove();
                if (key.isAcceptable()) {
                    listener = (ServerSocketChannel) key.channel();
                    SocketChannel clientChannel = listener.accept();
                    // 设置地址复用
                    clientChannel.socket().setReuseAddress(true);
                    clientChannel.configureBlocking(false);
                    // 将接受的客户端通道设置可读
                    SelectionKey connKey = clientChannel.register(selector, SelectionKey.OP_READ);
                    // 使用该类处理读写请求
                    conn = new NIOServerConnection(connKey);
                    connKey.attach(conn);
                }

                if (key.isReadable()) {
                    conn = (NIOServerConnection) key.attachment();
                    conn.handleRead();
                }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/160778
推荐阅读
相关标签
  

闽ICP备14008679号