Home  >  Article  >  Java  >  Java Example - Get the IP address of the specified host

Java Example - Get the IP address of the specified host

黄舟
黄舟Original
2017-01-20 11:34:111673browse

The following example demonstrates how to use the InetAddress.getByName() method of the InetAddress class to obtain the IP address of the specified host (website):

/*
 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);
   }}

The output result of the above code is:

www.w3cschool.cc=222.73.134.120

The above is the Java example - getting the IP address of the specified host. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn