2

我想编写代码让客户端向服务器发送一个字符串,服务器打印字符串并回复一个字符串,然后客户端打印字符串服务器回复。
我的服务器

public class Server {

public static void main(String[] args) throws IOException {
    ServerSocket ss = null;
    Socket s = null;
    try {
        ss = new ServerSocket(34000);
        s = ss.accept();
        BufferedReader in = new BufferedReader(new InputStreamReader(
                s.getInputStream()));
        OutputStreamWriter out = new OutputStreamWriter(s.getOutputStream());

        while (true) {
            String string = in.readLine();
            if (string != null) {
                System.out.println("br: " + string);

                if (string.equals("end")) {
                    out.write("to end");
                    out.flush();
                    out.close();
                    System.out.println("end");
                    // break;
                }
            }
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        s.close();
        ss.close();
    }
}
}

我的客户:

public class Client {
public static void main(String[] args) {
    Socket socket =null;


    try {
        socket = new Socket("localhost", 34000);
        BufferedReader in =new BufferedReader(new InputStreamReader(socket.getInputStream()));
        OutputStreamWriter out = new OutputStreamWriter(socket.getOutputStream());

        String string = "";
        string = "end";
        out.write(string);
        out.flush();
        while(true){
            String string2 = in.readLine();
            if(string2.equals("to end")){
                System.out.println("yes sir");
                break;
            }
        }


    }  catch (Exception e) {
        e.printStackTrace();
    }finally{
        try {
            System.out.println("closed client");
            socket.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}
}

有什么问题吗?如果我删除客户端类中的代码“while(true) ...”,就可以了。

4

4 回答 4

4

您应该"\r\n"在写入流的字符串末尾添加。

例子:

客户 :

    string = "end";
    out.write(string + "\r\n");
    out.flush();

服务器 :

    out.write("to end" + "\r\n");
    out.flush();
    out.close();
    System.out.println("end");
                // break;
于 2013-10-21T08:53:31.773 回答
0

I don't see the server response. You do a

System.out.println("br: " + string);

but not a

out.write(string);
out.flush();
于 2013-10-21T08:35:03.283 回答
0

将“\n”附加到服务器响应的末尾。

outToClient.writeBytes(sb.toString() + "\n"); 
于 2013-10-21T09:05:02.983 回答
0

你在读台词,但你不是在写台词。添加换行符,或调用BufferedReader.newLine().

于 2013-10-21T09:11:52.837 回答