| Author |
Getiing Server IP address
|
Deepa Jayaprakash
Greenhorn
Joined: Sep 12, 2005
Posts: 14
|
|
Hello, How can i get server IP using java code? Thanks
|
 |
Ta Ri Ki Sun
Ranch Hand
Joined: Mar 26, 2002
Posts: 442
|
|
|
Need more info, does the server need it's own IP, or does a client need the server's IP?
|
 |
Deepa Jayaprakash
Greenhorn
Joined: Sep 12, 2005
Posts: 14
|
|
|
Its client which wants server IP.
|
 |
Jody Brown
Ranch Hand
Joined: Nov 09, 2005
Posts: 43
|
|
|
Could you use java.net.InetAddress.getAddress() to obtain it?
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16479
|
|
Does the client already have a connection to the server? If it's a Socket connection then you'd just use the getInetAddress() method of the Socket class. But if the question is "I have no idea what the IP address of the server is, how can I connect to it?" then the answer is something like "Ask the administrator of the server."
|
 |
 |
|
|
subject: Getiing Server IP address
|
|
|