0

簡単なチャットをしようとしています。より多くのクライアントを処理するサーバーがあります。これは私が今まで行ったことです:接続、どのクライアントがメッセージを送信しているかをサーバーで識別できますが、問題は、クライアントでサーバーのように完全な会話を取得できないことです.たとえば

Client_1  (writing)
msg : hi

Client_2 (writing)
msg : hi from cl2

results 

Server :
Client_1 : hi
Client_2 : hi from cl2

Client_1 
Client_1 : hi

Client_2 
Client_2 :hi from cl2

両方のクライアントがサーバーと同じ情報を持つようにしたいと考えています。

My Server Script :
public class Server {

    public static void main(String[] args) throws IOException {
        ServerSocket server = new ServerSocket(1900);
        System.out.println("waiting");
        while (true) {
            Socket sock = server.accept();
            System.out.println("Client nou conectat !");
            ClientHandler cH = new ClientHandler(sock);
            cH.start();
        }
    }
}

class ClientHandler extends Thread {
    BufferedReader in;
    PrintWriter out;

    ClientHandler(Socket sock) throws IOException {
        out = new PrintWriter(new OutputStreamWriter(sock.getOutputStream()),
                true);
        in = new BufferedReader(new InputStreamReader(sock.getInputStream()));
    }

    public void run () {
            try {
                out.println("Hello from server"); //hello message to client
        while (true) {
            String linie = in.readLine();
            if (linie==null)
                return;
            System.out.println(linie); //message from client 
            out.println(linie);
        }
    }catch(Exception e) {e.printStackTrace();}
        }
}

クライアントスクリプト

public class Client {
    public static void main(String[] args) throws Exception {
    //  String ip ="192.168.1.12";
        String ip ="localhost";
        Socket sock = new Socket(ip, 1900); // localhost daca ii pe
                                                        // acelasi pc serverul
                                                        // si clientul,altfel
                                                        // IPul
        PrintWriter out = new PrintWriter(new OutputStreamWriter(
                sock.getOutputStream()), true);
        BufferedReader in = new BufferedReader(new InputStreamReader(
                sock.getInputStream()));
        String linie = in.readLine();
        System.out.println("Server :" + linie);//meesage from server
        BufferedReader console = new BufferedReader(new InputStreamReader(
                System.in));

        while (true) {
            linie = console.readLine();
            out.println("Client_1 :"+linie); // sending to server
            String linie2 =in.readLine();
            System.out.println(linie2); //resend message to client
        }
    }
}

私の問題をよく説明したいと思います:D。皆様へのアドバイスありがとうございます

4

1 に答える 1

1

サーバー側で。

サーバーへのクライアント接続ごとに ClientHandler を作成します。これで問題ありません。次に、各 ClientHandler から来るものを読み取ります。

ただし、各 ClientHandler は、サーバー上にある他のクライアントの数に依存しないため、「それらを接続」する必要があります。

私は作成します

public class ClientDispatcher{

    private List<ClientHandler> clients;

}

ClientHandler が持っているすべてのメッセージに対してその ClientDispatcher に通知して、メッセージを他の人に「ディスパッチ」できるようにします。

于 2013-10-15T10:27:00.273 に答える