다음 예에서는 InetAddress 클래스의 InetAddress.getByName() 메서드를 사용하여 지정된 호스트(웹 사이트)의 IP 주소를 얻는 방법을 보여줍니다.
/* author by w3cschool.cc GetIP.java */import java.net.InetAddress;import java.net.UnknownHostException;public class GetIP { public static void main(String[] args) { InetAddress address = null; try { address = InetAddress.getByName ("www.w3cschool.cc"); } catch (UnknownHostException e) { System.exit(2); } System.out.println(address.getHostName() + "=" + address.getHostAddress()); System.exit(0); }}
위 코드를 실행한 결과는 다음과 같습니다. :
www.w3cschool.cc=222.73.134.120
위는 지정된 호스트의 IP 주소를 가져오는 Java 예제입니다. 자세한 내용은 PHP 중국어 웹사이트(www.php.cn)를 참고하세요!