中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

java如何實現在線聊天室

發布時間:2021-11-24 10:43:19 來源:億速云 閱讀:158 作者:小新 欄目:編程語言

小編給大家分享一下java如何實現在線聊天室,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

在線聊天室
服務器

public class Chat {

public static void main(String[]args) throws IOException
{
    System.out.println("服務器啟動中...");
    //創建服務器
    ServerSocket server=new ServerSocket(9999);
    //阻塞式等待連接,當客戶端Socket創建好以后才開啟

    while(true)
    {
    Socket client=server.accept();
    System.out.println("一個客戶端建立了連接");

    new Thread(()->{
        DataInputStream dis = null;
        DataOutputStream dos = null;
        try {
            dis = new DataInputStream(client.getInputStream());
            dos = new DataOutputStream(client.getOutputStream());
        } catch (IOException e1) {
            e1.printStackTrace();
        }

        boolean flag=true;
        while(flag) {

        String msg = null;
        try {
            msg = dis.readUTF();
            dos.writeUTF(msg);
            dos.flush();
        } catch (IOException e) {

            //當斷掉客戶端連接時,不用循環再讀取數據
            flag=false;
        }

        //返回消息

        }
        try {
            if(null!=dos)
            {
            dos.close();
            }
        } catch (IOException e) {

            e.printStackTrace();
        }
        try {
            if(null!=dis)
            {
            dis.close();
            }
        } catch (IOException e) {

            e.printStackTrace();
        }
        try {
            if(null!=client)
            {
            client.close();
            }
        } catch (IOException e) {

            e.printStackTrace();
        }
    }).start();

    }
    }

}

客戶端:

public class Client {

public static void main(String[]args) throws UnknownHostException, IOException
{
    System.out.println("客戶端啟動中...");

    Socket client=new Socket("localhost",9999);
    //客戶端發送消息
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    DataOutputStream dos=new DataOutputStream(client.getOutputStream());
    DataInputStream dis =new DataInputStream(client.getInputStream());
    boolean flag=true;

    while(flag) {
    System.out.println("請輸入消息");
    String msg=br.readLine();
    dos.writeUTF(msg);
    dos.flush();
    //獲取消息

     msg=dis.readUTF();
     System.out.println(msg);
    }

     dos.close();
     dis.close();
     client.close();

}
}

以上是“java如何實現在線聊天室”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

安岳县| 博爱县| 新田县| 临猗县| 乌海市| 南华县| 黎川县| 民乐县| 保靖县| 花莲县| 丽水市| 朝阳区| 芜湖县| 田林县| 绿春县| 阿鲁科尔沁旗| 亚东县| 大港区| 南平市| 大埔县| 申扎县| 阿克| 页游| 怀仁县| 故城县| 依兰县| 淮安市| 昌图县| 综艺| 苗栗县| 赤壁市| 潮州市| 锡林浩特市| 娄烦县| 西乌| 固始县| 林西县| 遂宁市| 六安市| 雷山县| 阿合奇县|