Finding IP address of a URL in Java
Prerequisite: InetAddress
getByName() : Returns the InetAddress of the given host. If the host is a literal IP address, then only its validity is checked. Fetches public IP Address of the host specified. It takes the host as an argument and returns the corresponding IP address.
Examples:
Input : www.google.com Output : 216.58.199.164 Input : localhost Output : 127.0.0.1
Below programs illustrate how to fetch public IP address:
Note: These programs wont run on online compilers. Use offline compilers like Netbeans, Eclipse, etc, instead.
Program 1: Fetch IP address of any url
// Java program to demonstrate // how to fetch public IP Address import java.net.*; import java.*; class GFG { public static void main(String args[]) throws UnknownHostException { // The URL for which IP address needs to be fetched try { // Fetch IP address by getByName() InetAddress ip = InetAddress.getByName(new URL(s) .getHost()); // Print the IP address System.out.println("Public IP Address of: " + ip); } catch (MalformedURLException e) { // It means the URL is invalid System.out.println("Invalid URL"); } } } |
Output:
Public IP Address of: www.google.com/216.58.196.164
Program 2: Fetch public IP address of the one’s system
To find public IP, use http://bot.whatismyipaddress.com. It is an online utility, to find system’s public IP. Open the URL, read a line and print the line.
// Java program to demonstrate // how to fetch public IP Address import java.net.*; import java.*; class GFG { public static void main(String args[]) throws UnknownHostException { String systemipaddress = ""; try { BufferedReader sc = new BufferedReader( new InputStreamReader(url_name.openStream())); // reads system IPAddress systemipaddress = sc.readLine().trim(); } catch (Exception e) { systemipaddress = "Cannot Execute Properly"; } // Print IP address System.out.println("Public IP Address: " + systemipaddress + "\n"); } } |
Output:
Public IP Address: 103.62.239.242
Recommended Posts:
- Pinging an IP address in Java | Set 1
- Java program to find IP address of your computer
- Pinging an IP address in Java | Set 2 (By creating sub-process)
- Check if email address valid or not in Java
- Difference Between Network Address Translation (NAT) and Port Address Translation (PAT)
- Difference between MAC Address and IP Address
- Finding minimum and maximum element of a Collection in Java
- Network Address Translation (NAT)
- Extracting MAC address using Python
- C Program to display hostname and IP address
- Difference between Static and Dynamic IP address
- Transition from IPv4 to IPv6 address
- How Address Resolution Protocol (ARP) works?
- Introduction of MAC Address in Computer Network
- Address Resolution in DNS (Domain Name Server)
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.


