消息不是从服务器发送到单个服务器中的客户端 - 在java中的多个客户端

时间:2014-08-24 07:38:45

标签: java networking

我正在为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");
    }

从这段代码中我期待以下任务:

  1. 最初在服务器和客户端之间建立了连接
  2. 将从服务器向客户端发送名为“输入您的姓名”的消息
  3. 此消息将在客户端控制台中打印。
  4. 从客户端,名称将被发送到服务器。
  5. 然后服务器将执行以下行: os.println("Hello "+ Name +" Welcome To Our Exam System.Please type Exam to take an Exam or键入QUIT退出“);

  6. 但是在建立连接后,没有像“输入你的名字”这样的消息从服务器发送到客户端

  7. 为什么?

1 个答案:

答案 0 :(得分:1)

在服务器,LINE 68之后添加以下行:

  • os.flush()

客户端将显示预期的"输入您的姓名"。

服务器和客户端都在等待输入,因此陷入僵局。 您必须调用os.flush()来实际将数据发送到服务器。

您的服务器代码写入输出但未发送:

  • 服务器,LINE 68:os.println("输入您的姓名:");

然后客户端挂起,因为服务器没有通过os.flush()发送它:

  • 客户,LINE 37:response = is.readLine();

,而您的服务器也在等待客户端回答

  • Server,LINE 69:Name = is.readLine();

os.flush命令的源代码是这个示例代码: https://stackoverflow.com/a/5680427/3738721