溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么使用Java?NIO實現(xiàn)多人聊天室

發(fā)布時間:2021-11-24 13:31:14 來源:億速云 閱讀:119 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“怎么使用Java NIO實現(xiàn)多人聊天室”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么使用Java NIO實現(xiàn)多人聊天室”吧!

NIO服務(wù)端

public class NioServer {

    /**
     * 啟動
     */
    public void start() throws IOException {
        /**
         * 1. 創(chuàng)建Selector
         */
        Selector selector = Selector.open();
        /**
         * 2. 通過ServerSocketChannel創(chuàng)建channel通道
         */
        ServerSocketChannel serverSocketChannel = ServerSocketChannel.open();
        /**
         * 3. 為channel通道綁定監(jiān)聽端口
         */
        serverSocketChannel.bind(new InetSocketAddress(8000));
        /**
         * 4. **設(shè)置channel為非阻塞模式**
         */
        serverSocketChannel.configureBlocking(false);
        /**
         * 5. 將channel注冊到selector上,監(jiān)聽連接事件
         */
        serverSocketChannel.register(selector, SelectionKey.OP_ACCEPT);
        System.out.println("服務(wù)器啟動成功!");

        /**
         * 6. 循環(huán)等待新接入的連接
         */
        for (;;) { // while(true) c for;;
            /**
             * TODO 獲取可用channel數(shù)量
             */
            int readyChannels = selector.select();

            /**
             * TODO 為什么要這樣?。??
             */
            if (readyChannels == 0) continue;

            /**
             * 獲取可用channel的集合
             */
            Set<SelectionKey> selectionKeys = selector.selectedKeys();

            Iterator iterator = selectionKeys.iterator();

            while (iterator.hasNext()) {
                /**
                 * selectionKey實例
                 */
                SelectionKey selectionKey = (SelectionKey) iterator.next();

                /**
                 * **移除Set中的當前selectionKey**
                 */
                iterator.remove();

                /**
                 * 7. 根據(jù)就緒狀態(tài),調(diào)用對應方法處理業(yè)務(wù)邏輯
                 */
                /**
                 * 如果是 接入事件
                 */
                if (selectionKey.isAcceptable()) {
                    acceptHandler(serverSocketChannel, selector);
                }

                /**
                 * 如果是 可讀事件
                 */
                if (selectionKey.isReadable()) {
                    readHandler(selectionKey, selector);
                }
            }
        }
    }

    /**
     * 接入事件處理器
     */
    private void acceptHandler(ServerSocketChannel serverSocketChannel,
                               Selector selector)
            throws IOException {
        /**
         * 如果要是接入事件,創(chuàng)建socketChannel
         */
        SocketChannel socketChannel = serverSocketChannel.accept();

        /**
         * 將socketChannel設(shè)置為非阻塞工作模式
         */
        socketChannel.configureBlocking(false);

        /**
         * 將channel注冊到selector上,監(jiān)聽 可讀事件
         */
        socketChannel.register(selector, SelectionKey.OP_READ);

        /**
         * 回復客戶端提示信息
         */
        socketChannel.write(Charset.forName("UTF-8")
                .encode("你與聊天室里其他人都不是朋友關(guān)系,請注意隱私安全"));
    }

    /**
     * 可讀事件處理器
     */
    private void readHandler(SelectionKey selectionKey, Selector selector)
            throws IOException {
        /**
         * 要從 selectionKey 中獲取到已經(jīng)就緒的channel
         */
        SocketChannel socketChannel = (SocketChannel) selectionKey.channel();

        /**
         * 創(chuàng)建buffer
         */
        ByteBuffer byteBuffer = ByteBuffer.allocate(1024);

        /**
         * 循環(huán)讀取客戶端請求信息
         */
        String request = "";
        while (socketChannel.read(byteBuffer) > 0) {
            /**
             * 切換buffer為讀模式
             */
            byteBuffer.flip();

            /**
             * 讀取buffer中的內(nèi)容
             */
            request += Charset.forName("UTF-8").decode(byteBuffer);
        }

        /**
         * 將channel再次注冊到selector上,監(jiān)聽他的可讀事件
         */
        socketChannel.register(selector, SelectionKey.OP_READ);

        /**
         * 將客戶端發(fā)送的請求信息 廣播給其他客戶端
         */
        if (request.length() > 0) {
            // 廣播給其他客戶端
            broadCast(selector, socketChannel, request);
        }
    }

    /**
     * 廣播給其他客戶端
     */
    private void broadCast(Selector selector,
                           SocketChannel sourceChannel, String request) {
        /**
         * 獲取到所有已接入的客戶端channel
         */
        Set<SelectionKey> selectionKeySet = selector.keys();

        /**
         * 循環(huán)向所有channel廣播信息
         */
        selectionKeySet.forEach(selectionKey -> {
            Channel targetChannel = selectionKey.channel();

            // 剔除發(fā)消息的客戶端
            if (targetChannel instanceof SocketChannel
                    && targetChannel != sourceChannel) {
                try {
                    // 將信息發(fā)送到targetChannel客戶端
                    ((SocketChannel) targetChannel).write(
                            Charset.forName("UTF-8").encode(request));
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * 主方法
     * @param args
     */
    public static void main(String[] args) throws IOException {
        new NioServer().start();
    }

}

NIO客戶端

public class NioClient {

    /**
     * 啟動
     */
    public void start(String nickname) throws IOException {
        /**
         * 連接服務(wù)器端
         */
        SocketChannel socketChannel = SocketChannel.open(
                new InetSocketAddress("127.0.0.1", 8000));

        /**
         * 接收服務(wù)器端響應
         */
        // 新開線程,專門負責來接收服務(wù)器端的響應數(shù)據(jù)
        // selector , socketChannel , 注冊
        Selector selector = Selector.open();
        socketChannel.configureBlocking(false);
        socketChannel.register(selector, SelectionKey.OP_READ);
        new Thread(new NioClientHandler(selector)).start();

        /**
         * 向服務(wù)器端發(fā)送數(shù)據(jù)
         */
        Scanner scanner = new Scanner(System.in);
        while (scanner.hasNextLine()) {
            String request = scanner.nextLine();
            if (request != null && request.length() > 0) {
                socketChannel.write(
                        Charset.forName("UTF-8")
                                .encode(nickname + " : " + request));
            }
        }

    }
    public static void main(String[] args) throws IOException {
//        new NioClient().start();
    }
}

客戶端線程,處理服務(wù)器端響應的的消息

public class NioClientHandler implements Runnable {
    private Selector selector;

    public NioClientHandler(Selector selector) {
        this.selector = selector;
    }

    @Override
    public void run() {

        try {
            for (;;) {
                int readyChannels = selector.select();

                if (readyChannels == 0) continue;

                /**
                 * 獲取可用channel的集合
                 */
                Set<SelectionKey> selectionKeys = selector.selectedKeys();

                Iterator iterator = selectionKeys.iterator();

                while (iterator.hasNext()) {
                    /**
                     * selectionKey實例
                     */
                    SelectionKey selectionKey = (SelectionKey) iterator.next();

                    /**
                     * **移除Set中的當前selectionKey**
                     */
                    iterator.remove();

                    /**
                     * 7. 根據(jù)就緒狀態(tài),調(diào)用對應方法處理業(yè)務(wù)邏輯
                     */

                    /**
                     * 如果是 可讀事件
                     */
                    if (selectionKey.isReadable()) {
                        readHandler(selectionKey, selector);
                    }
                }
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    /**
     * 可讀事件處理器
     */
    private void readHandler(SelectionKey selectionKey, Selector selector)
            throws IOException {
        /**
         * 要從 selectionKey 中獲取到已經(jīng)就緒的channel
         */
        SocketChannel socketChannel = (SocketChannel) selectionKey.channel();

        /**
         * 創(chuàng)建buffer
         */
        ByteBuffer byteBuffer = ByteBuffer.allocate(1024);

        /**
         * 循環(huán)讀取服務(wù)器端響應信息
         */
        String response = "";
        while (socketChannel.read(byteBuffer) > 0) {
            /**
             * 切換buffer為讀模式
             */
            byteBuffer.flip();

            /**
             * 讀取buffer中的內(nèi)容
             */
            response += Charset.forName("UTF-8").decode(byteBuffer);
        }

        /**
         * 將channel再次注冊到selector上,監(jiān)聽他的可讀事件
         */
        socketChannel.register(selector, SelectionKey.OP_READ);

        /**
         * 將服務(wù)器端響應信息打印到本地
         */
        if (response.length() > 0) {
            System.out.println(response);
        }
    }
}

我們定義三個客戶端,模擬三個用戶在聊天室發(fā)送消息

public class AClient {

    public static void main(String[] args)
            throws IOException {
        new NioClient().start("AClient");
    }
}

public class BClient {

    public static void main(String[] args)
            throws IOException {
        new NioClient().start("BClient");
    }
}

public class CClient {

    public static void main(String[] args)
            throws IOException {
        new NioClient().start("CClient");
    }

}

到此,相信大家對“怎么使用Java NIO實現(xiàn)多人聊天室”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI