-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2InetExample.java
66 lines (58 loc) · 1.88 KB
/
2InetExample.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* author: eliotjang
* last_modified_at: 2019-10-13T21:34:00+09:00
*/
package chapter5;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.InetAddress;
import java.net.UnknownHostException;
public class InetExample {
public static void main(String[] args) {
String hostName;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
printLocalAddress();
try {
do {
if ((hostName = br.readLine()) != null)
printRemoteAddress(hostName);
} while (hostName!=null);
} catch (IOException e) {
e.printStackTrace();
} finally {
System.out.println("Exit Program..");
System.exit(0);
}
}
static void printLocalAddress() {
try {
InetAddress laddr = InetAddress.getLocalHost();
System.out.println("Local Host Name: " + laddr.getHostName());
System.out.println("Local Host IP Address: " + laddr.getHostAddress());
System.out.println("Local Host class: " + ipClass(laddr.getAddress()));
System.out.println("Local Host InetAddress: " + laddr.toString());
} catch (UnknownHostException e) {
e.printStackTrace();
}
}
static void printRemoteAddress(String hostName) {
try {
InetAddress machine = InetAddress.getByName(hostName);
System.out.println("Remote Host Name: " + machine.getHostName());
System.out.println("Remote Host IP Address: " + machine.getHostAddress());
System.out.println("Remote Host class: " + ipClass(machine.getAddress()));
System.out.println("Remote Host InetAddress: " + machine.toString());
} catch (UnknownHostException e) {
e.printStackTrace();
}
}
static char ipClass(byte[] ip) {
int highByte = 0xff & ip[0];
return(highByte < 128 ? 'A' : highByte < 192 ? 'B' : highByte < 224 ? 'C' : highByte < 240 ? 'D' : 'E');
/*
* NetWorkAddress of highByte
* A: 0~126, B: 128~191, C: 192~223, D: 224~239, E: 240~255
*/
}
}