-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathInetAddressDemo.java
28 lines (23 loc) · 1023 Bytes
/
InetAddressDemo.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import java.net.InetAddress;
import java.net.UnknownHostException;
public class InetAddressDemo {
public static void main(String[] args) {
try {
InetAddress address = InetAddress.getLocalHost();
System.out.println("Localhost: " + address);
address = InetAddress.getByName("www.baidu.com");
System.out.println(address);
System.out.println("Host Address : " + address.getHostAddress());
System.out.println("Host Name : " + address.getHostName());
System.out.println("Canonical Hostname: " + address.getCanonicalHostName());
InetAddress[] addresses = InetAddress.getAllByName("www.baidu.com");
for (InetAddress addr : addresses) {
System.out.println(addr);
}
address = InetAddress.getLoopbackAddress();
System.out.println("Loopback Address: " + address);
} catch (UnknownHostException e) {
e.printStackTrace();
}
}
}