TCP/IP 통신에서는 통신할 대상 서버를 찾을 때 호스트 이름이 아니라, IP 주소가 필요하다, 예를 들면 google은 다음과 같이 DNS탐색을 할 수 있다.public class InetAddressMain { public static void main(String[] args) throws UnknownHostException { InetAddress localhost = InetAddress.getByName("localhost"); System.out.println(localhost); InetAddress google = InetAddress.getByName("google.com"); System.out.println(google); ..