package sec06.exam01_inetaddress;
import java.net.InetAddress;
import java.net.UnknownHostException;
public class InetAddressExample {
public static void main(String[] args) {
try {
InetAddress local = InetAddress.getLocalHost();
System.out.println("내 컴퓨터 ip 주소: "+ local.getHostAddress());
InetAddress[] iaArr = InetAddress.getAllByName("www.naver.com");
for(InetAddress remote: iaArr) {
System.out.println("www.naver.com IP주소: "+remote.getHostAddress());
}
} catch (UnknownHostException e) {
e.printStackTrace();
}
}
}
반응형
'Java' 카테고리의 다른 글
[이것이 자바다] 자바 enum 공부 정리 (0) | 2020.12.20 |
---|---|
[이것이 자바다] 자바 쓰레드 공부 정리 (0) | 2020.12.20 |
[Java] 점프 투 자바 (0) | 2020.12.18 |
[Java] 자바 네트워킹 socket 기본 코드 - Server/Client code (0) | 2020.12.18 |
[Java] 자바 네트워킹 강의 (0) | 2020.12.18 |