如何:Java 服务器套接字响应和客户端读取

How to: Java Server Socket response and Client reading

想象下一个案例:

客户端-服务器连接

客户端向服务器发送请求 服务器回答客户端 客户阅读答案

Class 客户:

public class Client extends Service{

    private  String IP_ADDRESS;
    private  int PORT;

    public void start(){
        l.info("Starting client for server at: "+IP_ADDRESS+":"+PORT);
        //Initialization of the client
        try {
            cs=new Socket(IP_ADDRESS,PORT);
        } catch (UnknownHostException e) {
            l.error("Unkown host at the specified address");
            e.printStackTrace();
        } catch (IOException e) {


        l.error("I/O error starting the client socket");
                e.printStackTrace();
            }
        }

        //Sends the specified text by param
        public void sendText(String text){
            //Initializa the output client with the client socket data
            try {
                //DataOutputStream to send data to the server
                toServer=new DataOutputStream(cs.getOutputStream());

                l.info("Sending message to the server");

                PrintWriter writer= new PrintWriter(toServer);
                writer.println(text);
                writer.flush();

            } catch (IOException e) {
                l.error("Bat initialization of the output client stream");
                e.printStackTrace();
            }
        //Should show the answers from the server, i run this as a thread
        public void showServerOutput(){
            String message;

            while(true){
                //If there are new messages
                try {
                    BufferedReader br= new BufferedReader(new InputStreamReader((cs.getInputStream())));
                    if((message=br.readLine())!=null){
                        //Show them
                            System.out.println(message);
                    }
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }

   }

showServerOutput()是returns服务器发送的任何应答

的方法

然后我的服务器class有如下代码

public class Server extends Service{
    public void startListenner(){
        l.info("Listening at port "+PORT);
        while(true){
            // Waits for a client connection
            try {
                cs=ss.accept();
                l.info("Connection received: "+cs.getInetAddress()+":"+cs.getPort());

            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            try {
                toClient= new DataOutputStream(cs.getOutputStream());
                PrintWriter cWriter= new PrintWriter(toClient);

                //Send a confirmation message
                cWriter.println("Message received");
                //Catch the information sent by the client
                csInput=new BufferedReader(new InputStreamReader(cs.getInputStream()));

                printData();
                toClient.close();

            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

        }
    }
}

如您所见,我正在向客户端发送一条消息,内容为:"Message received",但它从未显示在客户端控制台中。怎么了?

编辑

printData() 方法在控制台打印从客户端收到的消息

public void printData(){
    l.info("Printing message received");
    try {
        System.out.println(csInput.readLine());
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

不确定您的 printData() 方法在做什么,但是您是否在打印 "Message received" 后在服务器端丢失了 cWriter.flush() ? 据我了解,您写了您的消息,但从未将其发送给您的客户。