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.

I'm making a peer-to-peer instant messaging application.

Currently, if UserA.pool.net says "hello" to UserB.pool.net, User A sees "You: hello" and User B sees "UserA.pool.net: hello".

Rather than User A seeing "You", I want them to see the hostname of their own machine so that User A sees the same text as User B.

Sorry if this is a stupid question, I just can't see how to do it.

share|improve this question
3  
possible duplicate of Java current machine name and logged in user? – Jonathon Apr 8 '11 at 14:48
It's a bit more complicated than that Jonathon...if you're behind a NAT layer User A and User B will definitely not see the same thing. – Mark Peters Apr 8 '11 at 14:50
2  
You're right, each participant will need to report their own (internal) host name to the other party. – Jonathon Apr 8 '11 at 14:51

3 Answers

up vote 10 down vote accepted

The short answer is that if you really want User A and User B to see the same text, you can't rely on finding out your hostname yourself. You need User B to transmit their view of User A's hostname to User A and vice versa. Due to NAT, you won't be able to just check your own computer's hostname.

Alternatively, (Jonathon beat me to this in the question comments) you can have each user send their own private hostname as part of the connection handshake and use that to print messages on the remote end.

share|improve this answer

See these functions of java.net.InetAddress - getLocalHost and getHostName :

String localhostname = java.net.InetAddress.getLocalHost().getHostName();

Note that this gets you the hostname as the machine sees itself; others may see it with a different one (e.g. the local hosts file says something different than DNS). In other words, it is not guaranteed that machine A will be seen with the same hostname from machine A, machine B, or machine C.

It may be more useful to send the whole identifier: piskvor@lachtan.my.network.example.com , instead of just piskvor.

share|improve this answer

I've gotten the hostname of the local machine in the past using something like this:

InetAddress addr = InetAddress.getLocalHost();

String hostname = addr.getHostName();

You could refer to: InetAddress.getHostName()

share|improve this answer

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.