我正在为JAVA中的单个服务器和多个客户端编码。 This is my code for server 并且This is my code for client。
更具体地说,我的服务器中有以下代码。
String Name;
try {
os.println("Enter Your Name:");
Name=is.readLine();
os.println("Hello "+ Name +" Welcome To Our Exam System.Please type Exam to take an Exam or type QUIT to Exit");
line=is.readLine();
while(line.compareTo("QUIT")!=0){
os.println(line);
os.flush();
System.out.println("Response to Client : "+line);
line=is.readLine();
}
} catch (IOException e) {
line=this.getName(); //reused String line for getting thread name
System.out.println("IO Error/ Client "+line+" terminated abruptly");
}
catch(NullPointerException e){
line=this.getName(); //reused String line for getting thread name
System.out.println("Client "+line+" Closed");
}
以及client.java中的以下代码
try {
s1=new Socket(address, 4445); // You can use static final constant PORT_NUM
br= new BufferedReader(new InputStreamReader(System.in));
is=new BufferedReader(new InputStreamReader(s1.getInputStream()));
os= new PrintWriter(s1.getOutputStream());
}
catch (IOException e){
e.printStackTrace();
System.err.print("IO Exception");
}
System.out.println("Client Address : "+address);
System.out.println("Enter Data to echo Server ( Enter QUIT to end):");
String response=null;
try{
response=is.readLine();
System.out.println(response);
line=br.readLine();
os.println(line);
response=is.readLine();
line=br.readLine();
while(line.compareTo("QUIT")!=0)
{
os.println(line);
os.flush();
response=is.readLine();
System.out.println("Server Response : "+response);
line=br.readLine();
}
}
catch(IOException e){
e.printStackTrace();
System.out.println("Socket read Error");
}
从这段代码中我期待以下任务:
然后服务器将执行以下行:
os.println("Hello "+ Name +" Welcome To Our Exam System.Please type Exam to take an Exam or
键入QUIT退出“);
但是在建立连接后,没有像“输入你的名字”这样的消息从服务器发送到客户端
为什么?
答案 0 :(得分:1)
在服务器,LINE 68之后添加以下行:
客户端将显示预期的"输入您的姓名"。
服务器和客户端都在等待输入,因此陷入僵局。 您必须调用os.flush()来实际将数据发送到服务器。
您的服务器代码写入输出但未发送:
然后客户端挂起,因为服务器没有通过os.flush()发送它:
,而您的服务器也在等待客户端回答
os.flush命令的源代码是这个示例代码: https://stackoverflow.com/a/5680427/3738721