Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Although I searched about it I couldn't find an answer.

Let's say I have the following Java code:

    ServerSocket serve = null;

    try {
        server = new ServerSocket(5567);
    } catch (IOException e) {
        System.err.println("Problem with port 5567");
        System.exit(1);
    }

    Socket clientSocket = null;
    try {
        clientSocket = server.accept();
    } catch (IOException e) {
        System.exit(1);
    }

When server.accept() is being called the program blocks until someone connects to my server. Is there a way, to be able to find the IP of the program/user who connects to my server?

share|improve this question

1 Answer

up vote 3 down vote accepted

Try

Socket clientSocket = null;
    try {
        clientSocket = server.accept();
        System.out.println("Connected from " + clientSocket .getInetAddress() + " on port "
             + clientSocket .getPort() + " to port " + clientSocket .getLocalPort() + " of "
             + clientSocket .getLocalAddress());
    } catch (IOException e) {
        System.exit(1);
    }
share|improve this answer
This seems back to front. The 'from' ip:port is given by getInetAddress() : getPort(). The local ip:port is given by getLocalAddress() : getLocalPort(). – EJP Feb 15 '11 at 3:54
@EJP you are correct. Fixed. – Bala R Feb 15 '11 at 3:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.