gpt4 book ai didi

java - 关于 Echoclient 程序的问题

转载 作者:行者123 更新时间:2023-12-01 15:51:58 24 4
gpt4 key购买 nike

我总是收到消息“不知道主机:taranis”。运行 echoclient 程序时。这是下面的程序

import java.io.*;
import java.net.*;

public class EchoClient {
public static void main(String[] args) throws IOException {

Socket echoSocket = null;
PrintWriter out = null;
BufferedReader in = null;

try {
echoSocket = new Socket("taranis",3218);
out = new PrintWriter(echoSocket.getOutputStream(), true);
in = new BufferedReader(new InputStreamReader(
echoSocket.getInputStream()));
} catch (UnknownHostException e) {
System.err.println("Don't know about host: taranis.");
System.exit(1);
} catch (IOException e) {
System.err.println("Couldn't get I/O for "
+ "the connection to: taranis.");
System.exit(1);
}

BufferedReader stdIn = new BufferedReader(
new InputStreamReader(System.in));
String userInput;

while ((userInput = stdIn.readLine()) != null) {
out.println(userInput);
System.out.println("echo: " + in.readLine());
}

out.close();
in.close();
stdIn.close();
echoSocket.close();
}
}

最佳答案

初始化socket时,您需要使用有效的主机名或服务器的有效IP(假设您有一个) (new Socket("taranis",3218))。学习这些教程很棒(正如 icktoofay 所指出的),但特别是在网络方面,您必须确保另一端运行匹配的应用程序,并且参数匹配它。 IP 和端口通常会随着机器和应用程序的不同而变化。

关于java - 关于 Echoclient 程序的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5846766/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com