반응형

도메인의 IP 를 알아낸 java 코드입니다.


1
2
3
4
5
  public static void main(String[] args) throws UnknownHostException {
    InetAddress giriAddress = java.net.InetAddress.getByName("www.naver.com");
    String address = giriAddress.getHostAddress();
    System.out.println(address);
  }
cs


* 결과 *


1
202.179.177.21
cs


반응형

+ Recent posts