Which of the following is the best and most portable way to get the hostname of the current computer in Java?
Runtime.getRuntime().exec("hostname")
vs
InetAddress.getLocalHost().getHostName()
|
|
Strictly speaking - you have no choice but calling either
is bound to fail in some circumstances:
Also don't confuse the name of an IP-address with the name of the host (hostname). A metaphor might make it clearer:
This illustrates it pretty much I think. The good news is: The real hostname is usually not necessary. In most cases any name which resolves into an IP address on this host will do. (The stranger might enter the city by Northgate, but helpful locals translate the "2nd left" part.) If the remaining corner cases you must use the definitive source of this configuration setting - which is the C function |
|||||
|
|
One host can be known under many different hostnames. Usually you'll be looking for the hostname your host has in a specific context. For example, in a web application, you might be looking for the hostname used by whoever issued the request you're currently handling. How to best find that one depends on which framework you're using for your web application. In some kind of other internet-facing service, you'll want the hostname your service is available through from the 'outside'. Due to proxies, firewalls etc this might not even be a hostname on the machine your service is installed on - you might try to come up with a reasonable default, but you should definitely make this configurable for whoever installs this. |
|||
|
|
|
If you need more evidence, other SO answers that are related to this use the EDIT: You should take a look at A.H.'s answer for a well-argued opposite opinion. As an answer for this person who specifically requested portable, I still think |
|||||
|
|
|||||||
|
|
InetAddress.getLocalHost().getHostName() is the best way out of the two as this is the best abstraction at the developer level. |
|||||
|
|
The most portable way to get the hostname of the current computer in Java is as follows:
} |
||||
|