-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuoi3.java
47 lines (38 loc) · 1.48 KB
/
buoi3.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
//check name vs ip của máy tính
// import java.net.InetAddress;
// import java.net.UnknownHostException;
// public class buoi3 {
// public static void main(String[] args) {
// try {
// // Lấy InetAddress của localhost
// InetAddress localhost = InetAddress.getLocalHost();
// String ipAddress = localhost.getHostAddress();
// String hostname = localhost.getHostName();
// // Hiển thị địa chỉ IP của localhost
// System.out.println("host address : " + ipAddress);
// System.out.println("host name : " + hostname);
// } catch (UnknownHostException e) {
// e.printStackTrace();
// }
// }
// }
//check ip và name của web
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.Scanner;
public class buoi3 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Nhap ten trang web (vi du: google.com.vn): ");
String nameweb = scanner.nextLine();
try {
InetAddress[] addresses = InetAddress.getAllByName(nameweb);
for (int i = 0; i < addresses.length; i++) {
System.out.println("Dia chi IP " + (i + 1) + " : " + addresses[i]);
}
} catch (UnknownHostException e) {
System.out.println("Khong tim thay dia chi IP cho trang web " + nameweb);
}
scanner.close();
}
}