Latest web development tutorials

Java Examples - Get the IP address of the specified host

Java Examples Java Examples

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

/*
 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 above code is run output is:

www.w3cschool.cc=222.73.134.120

Java Examples Java Examples