Hostname, HostAddress 알아보기
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.*;
public class InetAddressTest {
public static void main(String[] args) throws UnknownHostException{
// 키보드로 www.daum.net
// ip 주소, 호스트 네임...
Scanner s = new Scanner(System.in);
System.out.println("입력하시오");
String name = s.nextLine();
InetAddress ip = null;
if(name.equals("")){
// 내컴퓨터를 inetAdress 객체로 생성
ip = InetAddress.getLocalHost();
}else{
// 사용자 입력 호스트 컴퓨터
ip = InetAddress.getByName(name);
}
System.out.println("컴퓨터 이름 = " + ip.getHostName()+
" IP ="+ip.getHostAddress());
}
}