Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / Java

Determine the IP address for any website

5.00/5 (1 vote)
17 Jul 2011CPOL 29.4K  
How to determine the IP address for a website in Java.
You can use Java to determine the IP address of any website.

A sample Java program:
Java
import java.net.*;

class Addr
{
   public static void main(String args[])
   {
      try
      {
         InetAddress in=InetAddress.getByName("Enter the website here like www.google.com");
         System.out.println("The ip Address of site is:"+in.getHostAddress());
      }
      catch(Exception e)
      {
System.out.println("Some Exception has occurred with details"+e.getMessage());
      }
   }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)