Easy Tutorial
❮ Character Touppercase Arrays Remove ❯

Java Example - Getting the IP Address of a Specified Host

Java Examples

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

Main.java File

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.tutorialpro.org");
        }
        catch (UnknownHostException e) {
            System.exit(2);
        }
        System.out.println(address.getHostName() + "=" + address.getHostAddress());
        System.exit(0);
    }
}

The output of the above code is:

www.tutorialpro.org=222.73.134.120

Java Examples

❮ Character Touppercase Arrays Remove ❯