Get Local Host name in Java
Description
The following code shows how to get Local Host name.
Example
//from ww w . j a v a2 s .com
import java.net.InetAddress;
import java.net.UnknownHostException;
public class Main {
public static void main(String[] args) {
try {
InetAddress address = InetAddress.getLocalHost();
System.out.println("My name is " + address.getHostName());
} catch (UnknownHostException e) {
System.out.println("I'm sorry. I don't know my own name.");
}
}
}
The code above generates the following result.