我大吃一惊。
我从https://docs.oracle.com/javase/tutorial/networking/sockets/examples/EchoServer.java那里获取了代码
服务器的。和 https://docs.oracle.com/javase/tutorial/networking/sockets/examples/EchoClient.java
为客户。我做了些小改动。通常,这样就不会有来回回音。而是服务器应该持续2秒的延迟发送相同的字符串。但我只是不明白为什么客户不工作。 它发送异常消息: 无法获得与127.0.0.1的连接的I / O 我使用以下命令运行服务器:java 6788 和客户:127.0.0.1 6788 我尝试了其他端口。
我在eclipse中执行此操作,因此在运行类之前先在Runconfiguration中设置参数。我先启动服务器。我在月食之外的终端中尝试过。没有什么使它起作用。 基本上,客户端应连接到服务器,并使用System.out.println()输出服务器依次输出到客户端的内容。但是什么也没发生。 怎么了?
客户:
import java.io.*;
import java.net.*;
public class EchoClient {
public static void main(String[] args) throws IOException {
if (args.length != 2) {
System.err.println(
"Usage: java EchoClient <host name> <port number>");
System.exit(1);
}
String hostName = args[0];
int portNumber = Integer.parseInt(args[1]);
try (
Socket echoSocket = new Socket(hostName, portNumber);
BufferedReader in =
new BufferedReader(
new InputStreamReader(echoSocket.getInputStream()));
) {
String userInput;
while (true) {
System.out.println("recieved: " + in.readLine());
}
} catch (UnknownHostException e) {
System.err.println("Don't know about host " + hostName);
System.exit(1);
} catch (IOException e) {
System.err.println("Couldn't get I/O for the connection to " +
hostName);
System.exit(1);
}
}
}
服务器:
import java.net.*;
import java.io.*;
public class EchoServer {
public static void main(String[] args) throws IOException {
if (args.length != 1) {
System.err.println("Usage: java EchoServer <port number>");
System.exit(1);
}
int portNumber = Integer.parseInt(args[0]);
System.out.println(args[0]);
InetAddress add = InetAddress.getLocalHost();
System.out.println(add.getHostAddress());
try (
ServerSocket serverSocket =
new ServerSocket(Integer.parseInt(args[0]));
Socket clientSocket = serverSocket.accept();
PrintWriter out =
new PrintWriter(clientSocket.getOutputStream());
) {
while (true) {
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
out.println("HELLO!");
}
} catch (IOException e) {
System.out.println("Exception caught when trying to listen on port "
+ portNumber + " or listening for a connection");
System.out.println(e.getMessage());
}
}
}
答案 0 :(得分:2)
您必须将答案发送给客户。
添加一个out.flush();
while (true) {
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
out.println("HELLO!");
out.flush();
}
答案 1 :(得分:0)
正如评论中我最终找到了解决方案。 BufferedReader.readLine()“已阻止”。从文件读取时,如果我理解正确,它会在读取到换行符后返回一行。 但是由于它是来自服务器的“稳定流”,没有换行符,因此它只是保持“读取”状态,并且从不返回字符串。
然后,我尝试使用BufferedReader.read()方法,该方法逐字符读取字符,并在每个字符之后返回(因此永不阻塞)。然后,它在到达每个字符时打印每个字符,还侦听从服务器发送的换行符,并且一旦读取的字符等于一个换行符,它就会打印一个换行符。类似于我从原始问题中期望的“读取行”行为。
阅读客户的部分内容:
while(true) {
character = (char) reader.read();
if(Character.isISOControl(character)) {
System.out.println();
}
else {
System.out.printf("%c", character);
}
}
发送服务器的一部分:
private String message = "HELLO\n";
...
while(true) {
try {
Thread.sleep(2000);
writer.write(message);
writer.flush();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}