A sentimental robot

InetAddress Class 본문

Java

InetAddress Class

GOD03219 2017. 12. 29. 14:24

import java.net.*;
public class CC  {
  public static void main(String []args) throws UnknownHostException{
   
   //로컬 호스트를 이용한 InetAddress 객체 생성
   InetAddress a=InetAddress.getLocalHost();
   //호스트 이름을 문자열로 반환
   System.out.printf("호스트 이름: %s %n", a.getHostName());
   //호스트에 대한 IP주소 반환
   System.out.printf("호스트 IP주소 :%s %n", a.getHostAddress());
   
   //java.sun.com에 대응하는 InetAddress 객체 반환
   a=InetAddress.getByName("java.sun.com");
   System.out.printf("호스트 이름: %s %n", a.getHostName());
   System.out.printf("호스트 IP주소 :%s %n", a.getHostAddress());
   
   //매개변수 host에 대응하는 InetAddress 배열을 반환
   InetAddress s[]=InetAddress.getAllByName("www.naver.com");
   for(InetAddress temp_s:s){
    System.out.printf("호스트 이름: %s ,", temp_s.getHostName());
    System.out.printf("호스트 IP주소 :%s %n", temp_s.getHostAddress());


   }
   
  }

}

 

'Java' 카테고리의 다른 글

도서관리프로그램  (0) 2017.12.29
Reference's reference  (0) 2017.12.29
Map을 이용한 성적관리  (0) 2017.12.29
Map  (0) 2017.12.29
Exception Handling  (0) 2017.12.29