Here is the Java code.
- import java.net.InetAddress;
- import java.net.UnknownHostException;
- public class HostIp {
- public static void main(String[] args) {
- InetAddress address = null;
- try {
- address = InetAddress.getByName("www.c-sharpcorner.com");
- } catch (UnknownHostException e) {
- System.exit(2);
- }
- System.out.println(address.getHostName() + " = " + address.getHostAddress());
- System.exit(0);
- }
- }
Thank you, keep learning and sharing.