Memory Drive

반응형
  1. import java.net.*;
  2. class AddressTest {
  3.   public static void main(String args[])
  4.   {
  5.    
  6.     try
  7.     {
  8.       InetAddress Address = InetAddress.getLocalHost();
  9.      
  10.       System.out.println("로컬 컴퓨터의 이름 : "
  11.                   + Address.getHostName() );
  12.       System.out.println("로컬 컴퓨터의 IP : "
  13.                   + Address.getHostAddress() );
  14.       Address = InetAddress.getByName("java.sun.com");
  15.       System.out.println("java.sun.com 컴퓨터의 이름과 IP 주소 : "
  16.                   + Address);
  17.       InetAddress SW[] = InetAddress.getAllByName("www.naver.com");
  18.      
  19.       for(int i=0; i<SW.length; i++)
  20.       {
  21.         System.out.println(SW[i]);
  22.       }
  23.     }
  24.    
  25.     catch (UnknownHostException e)
  26.     {
  27.       System.out.println("알수없는 호스트");
  28.     }
  29.              
  30.   }
  31. }
 
반응형

'Computer_IT > JAVA' 카테고리의 다른 글

[JAVA5] 방향키를 이용해 button 움직이기  (0) 2006.09.14
[JAVA5] ActionEvent Example  (0) 2006.09.14
콘솔입력받아 배열에 넣기  (0) 2006.04.16
JAVA class 정의  (0) 2006.04.12
JAVA에서 Console 문자열 입력받기  (0) 2006.04.05