簡體   English   中英

如何:Java Server套接字響應和客戶端閱讀

[英]How to: Java Server Socket response and Client reading

想象下一個情況:

客戶端-服務器連接

客戶端向服務器發送請求服務器答案客戶端客戶端讀取答案

類客戶:

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()是返回服務器發送的所有答案的方法

然后我的服務器類具有以下代碼

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();
            }

        }
    }
}

如您所見,im正在向客戶端發送一條消息,內容為:“收到消息”,但從未在客戶端控制台中顯示。 怎么了?

編輯

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()方法在做什么,但是一旦打印了“收到消息”,您是否不在服務器端缺少cWriter.flush()嗎? 據我了解,您寫的是消息,但永遠不會將其發送給客戶。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM