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

溫馨提示×

溫馨提示×

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

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

Java中使用ServerSocket和Socket的多線程示例

發布時間:2020-07-14 06:26:16 來源:網絡 閱讀:1669 作者:戀上程序員 欄目:編程語言

開始...
1、服務器端:

public class ServerSocketApp {
    public static void main(String[] args) {
        try {
            ServerSocket serverSocket = new ServerSocket(9999);
            System.out.println("服務已啟動");
            while (true) {
                Socket socket = serverSocket.accept();
                System.out.println("客戶" + socket.getInetAddress().getHostAddress() + "來訪,");
                new Thread(() -> {
                    try {
                        InputStream inputStream = socket.getInputStream();
                        PrintStream printStream = new PrintStream(socket.getOutputStream());
                        Scanner in = new Scanner(inputStream);
                        in.useDelimiter("\n");
                        while (in.hasNext()) {
                            String message = in.next().trim();
                            if (message.equalsIgnoreCase("bye")) {
                                String bye = new String("客戶端已退出,拜拜".getBytes("UTF-8"));
                                System.out.println(bye);
                                printStream.println(bye);
                            } else {
                                printStream.println("ECHO>" + message);
                            }
                        }
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }).start();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}

2、客戶端程序:

public class ClientSocketApp {
    public static void main(String[] args) throws IOException {
        Socket socket = new Socket("localhost", 9999);
        Scanner in = new Scanner(System.in);
        Scanner inputStream = new Scanner(socket.getInputStream());
        PrintStream printStream = new PrintStream(socket.getOutputStream());
        in.useDelimiter("\n");
        inputStream.useDelimiter("\n");
        boolean b = true;
        System.out.println("請輸入:");
        while (b) {
            if (in.hasNext()) {
                String message = in.next().trim();
                printStream.println(message);
                if (inputStream.hasNext()) {
                    String serverMessage = new String(inputStream.next().trim().getBytes("UTF-8"));
                    System.out.println(serverMessage);
                }
                if (message.equalsIgnoreCase("bye")) {
                    b = false;
                }
            }
        }
        socket.close();
    }
}

3、運行
服務器
cd com/kyy/bases/socket 運行javac ServerSocketApp.java
cd classpath根目錄 運行java ServerSocketApp
服務器端啟動
客戶端
cd com/kyy/bases/socket 運行javac ClientSocketApp.java
cd classpath根目錄 運行java ClientSocketApp

遇到的問題:
如果不通過eclipse、Idea等工具,會出現 “找不到或無法加載主類 com.kyy.bases.socket.ClientSocketApp”的異常
解決辦法,設置classpath=.;"JAVA_HOME"/lib
或者在cmd窗口臨時設置set classpath=.;

...結束

向AI問一下細節

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

AI

原平市| 隆德县| 田东县| 滨州市| 云梦县| 聊城市| 龙山县| 万盛区| 巴东县| 保德县| 新巴尔虎右旗| 大厂| 永春县| 江西省| 朝阳区| 蒙阴县| 武鸣县| 青阳县| 巴楚县| 永靖县| 大宁县| 若羌县| 嘉峪关市| 三原县| 名山县| 安塞县| 金平| 正安县| 德格县| 塔河县| 江城| 桐柏县| 安达市| 大宁县| 马关县| 无棣县| 沾化县| 六枝特区| 山阳县| 万宁市| 闽侯县|