5 lines
158 B
Java
5 lines
158 B
Java
|
|
void printHostname() throws UnknownHostException {
|
||
|
|
InetAddress localhost = InetAddress.getLocalHost();
|
||
|
|
System.out.println(localhost.getHostName());
|
||
|
|
}
|