tags:

views:

137

answers:

6

Hi, this is not my homework(my homework is just about doing chat with a client and server which it works correctly especially with your help[:-)] but I want to make two clients chat with each other,I don't know that when i get text from the first one how can I send that text to the other client.would you please help me.thanks.

public class MainServer {

static Socket client = null;
static ServerSocket server = null;



public static void main(String[] args) {
    System.out.println("Server is starting...");
    System.out.println("Server is listening...");

    try {
        server = new ServerSocket(5050);
    } catch (IOException ex) {
        System.out.println("Could not listen on port 5050");
        System.exit(-1);

    }
    try {
        boolean done = false;
        while (!done) {

            client = server.accept();
            System.out.println("Client Connected...");
            BufferedReader streamIn = new BufferedReader(new InputStreamReader(client.getInputStream()));
            PrintWriter streamOut = new PrintWriter(client.getOutputStream(),true);
            String line = streamIn.readLine();
            if (line.equalsIgnoreCase("bye")) {
                streamIn.close();
                client.close();
                server.close();
                done = true;
            } else {
                System.out.println(line);
                streamOut.println(line);
            }
        }

    } catch (IOException e) {
        System.out.println("IO Error in streams " + e);
    }
}}
A: 

Have a look at Building an Internet chat system.

This explains how to write simple Clients and a Server with Java.

Peter Lang
+3  A: 

That's it, your two "clients" will both act as client and server : Listening to incoming things on a socket and sending things over an other sockets.

Pico
So it doesn't need to set the server socket to send the text to which client?I mean client A send text to the server and the server should send that text to the clientB ,the server should know which client.
Johanna
+1  A: 

On the server, you can keep a Set of all the clients that are currently connected to the server. The server should listen for messages (can do this with a ServerSocket, and clients connect with normal Sockets). Each time the server receives a message, it sends this message back to all clients in the Set, and the clients display the message.

EDIT: this is for a client-server system, where clients connect to a central server instead of directly to each other. If you want to do direct client-to-client, one of them will just have to act as the server, and you'll need to implement a chat UI in both.

Kaleb Brasee
A: 

Unless you want to get into really complicated P2P discovery protocols, you would have to have a server to act at least as an intermediary.

In order to establish a direct client to client connection, the clients would need to know each others IP addresses. To do this, each client would first connect and "register" itself with a central server.

When a client wants to talk to another client, it would ask for that client's address from the server, then establish a connection directly with that client. So each client is acting both as a client (establishing connections with the server and other clients) and as a server (accepting connections from other clients).

It seems simple in theory, but in practice it gets more complicated. For example, what if the client you want to connect to is behind a firewall? You could have a hole in the firewall for incoming connections to get through, or you could fall back to having the communication go through the server, or if one of the clients is behind a firewall and the other isn't, the server could mediate the connection in the opposite direction.

Eric Petroelje
Bonjour is trivially simple with jmdns.
Thorbjørn Ravn Andersen
@Thorbjørn - I haven't done anything with Bonjour before, but you should post that as an answer though if you think it makes sense for what he is doing.
Eric Petroelje
A: 

Basically, there are two approaches:

  1. One Chat server that receives all messages and distributes/forwards them to the clients (xmpp/jabber works this way)
  2. One server that connects clients directly. Like on peer-to-peer networks

Looking back at your previous work, I think, the first approach is more feasible.

The server will offer one port where new clients can connect. After a client requests to participate/use the server, there server spawns a worker thread with a server socket on a different (available) port number and tell the client that port number. This is the reserved communication channel for that client with the server.

The rest is pretty straightforward: a client can send a new chat message, the server will pick it up and send it to all connected clients.

If a client disconnects, the worker thread will close the socket, return it to the pool and terminate.

Andreas_D
A: 

Here is a very simple, ~100 line, GUI chat program.

trashgod