一个简单的java客户端服务器程序(A simple java client server prog

2019-10-17 21:56发布

所以,我在Java中这样做的客户端服务器程序为我的大学小型项目。 请注意,这是一个大的项目我的工作只是一个小模块。 我需要一个字符串从客户端发送到服务器。 因为它是返回给客户端的服务器将返回的字符串。 (该代码将被修改以后,使得字符串被发送回之前处理)。 每当需要对服务器,客户端会发送一个字符串。 因此,这意味着它是强制性的服务器运行无限期的时间。

我在这里所面临的问题是,我的服务器只有当客户端发送一个字符串的第一次完美的作品。 如果我运行客户端第二次使用不同的字符串,我回去我发送到服务器之前相同的字符串!

这里是我的服务器程序:

        public class Server {

        public static boolean x = true;
        public static String reply;

        public static void main(String a[]) throws Exception {

        System.out.println("Entered server console..");
            Socket echoSocket = null;
            ServerSocket serverSocket = null;
            PrintWriter out = null;
            BufferedReader in = null;

            System.out.println("Initializing Connection..");

            boolean runFlag = true;
            try {
                serverSocket = new ServerSocket(77);

                while (runFlag) {
                    echoSocket = serverSocket.accept();

                    out = new PrintWriter(echoSocket.getOutputStream(), true);

                    BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));

                    while (x) {

                        in = new BufferedReader(new InputStreamReader(echoSocket.getInputStream()));
                        reply = in.readLine();
                        if (reply != null) {
                            x = false;
                        }
                    }
                    System.out.println("received: " + reply);

                    out.println(reply);

                    System.out.println("sent back: " + reply);
                    stdIn.close();
                }

            } catch (Exception e) {
                System.out.println("Exception in starting server: " + e.getMessage());
            } finally {
                out.close();
                in.close();
                echoSocket.close();
            }

        }
    }

这里是我的客户端程序:

    public class Client {
    public static String reply,temp;
    public static boolean x=true;

    public Client()
    {
        temp="lala";
    }
    public Client(String t)
    {
        temp=t;
    }

    public static void main(String[] args) throws IOException {

        Socket echoSocket = null;
        PrintWriter out = null;
        BufferedReader in = null;

        try {
            echoSocket = new Socket("localhost", 77);
            out = new PrintWriter(echoSocket.getOutputStream(), true);
            in = new BufferedReader(new InputStreamReader(echoSocket.getInputStream()));
        } catch (UnknownHostException e) {
            System.err.println("Don't know about host: localhost.");
            System.exit(1);
        } catch (IOException e) {
            System.err.println("Couldn't get I/O for the connection to: localhost.");
            System.exit(1);
        }

        BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));

        temp="lala"; //this is the string to be sent

        out.println(temp);

        while (x) {
            reply= in.readLine();
            if(reply!=null)
            {
                x=false;
            }
        }

        System.out.println("reply: "+reply);

        out.close();
        in.close();
        stdIn.close();
        echoSocket.close();
    }
}

谁能帮我找到这里的问题是什么?

Answer 1:

while (x) {
   in = new BufferedReader(new InputStreamReader(echoSocket.getInputStream()));
   reply = in.readLine();
   if (reply != null) {
      x = false;
   }
}

你的服务器进入这个循环中的第一次客户端连接,并将其设置回复字符串从客户端的一些输入。 但是,它不会再进入这个循环中,为x的值永远不会变回真。



Answer 2:

当您接受请求,x将被设置为false,从来没有成为现实。 当你进入循环请最初的X。 更重要的是,如果你使用的客户端和服务器之间的插座,请移动

echoSocket = serverSocket.accept();

从第一loop.And,你可以用echoSocket到communicate.Then您将保持长期联系。



文章来源: A simple java client server program