美好的一天,
下面的代码运行,但是服务器仅在我终止该字符串后才写入该字符串,否则客户端仅会在我终止正在运行的服务器后收到该字符串。 应该发生的情况是,连接后,客户端会向服务器发送问候消息,服务器会读取消息并将其输出到控制台,然后服务器将消息写回到客户端,然后客户端会读取消息并将其输出到控制台,然后立即断开连接。
public class Server
{
public static void main(String[] args)
{
ServerSocket ss;
try {
ss=new ServerSocket(2018);
Socket s=ss.accept();
System.out.println("connected...");
Handler h =new Handler(s);
Thread t=new Thread(h);
t.start();
}catch(IOException ex)
{
ex.printStackTrace();
}
//client handler.
public Handler(Socket s)
{
cs=s;
}
@Override
public void run()
{
try
{
pw=new PrintWriter(cs.getOutputStream());
sc=new Scanner(cs.getInputStream());
pw.write("SERVER SAYS:Hello");
pw.flush();
System.out.println(sc.nextLine());
}catch(IOException e)
{
e.printStackTrace();
}
//then the client.
public class Client {
public static void main(String[] args)
{
Socket s;
PrintWriter pw;
Scanner sc;
try {
s=new Socket("localhost",2018);
pw=new PrintWriter(s.getOutputStream());
sc=new Scanner(s.getInputStream());
pw.write("HELLO");
pw.flush();
String msg=sc.nextLine();
System.out.println(msg);
}catch(IOException e)
{
e.printStackTrace();
}
答案 0 :(得分:0)
您的客户端调用sc.nextLine()
,该请求将阻塞,直到流中包含换行符或关闭连接为止。由于服务器从不发送换行符(\n
),因此sc.nextLine()
仅在终止服务器后返回。
将pw.write("SERVER SAYS:Hello");
更改为pw.write("SERVER SAYS:Hello\n");
,它将按预期工作。