Take a look at InetAddress
and the getHostAddress()
method.
InetAddress address = InetAddress.getByName("www.example.com");
System.out.println(address.getHostAddress());
Take a look at InetAddress
and the getHostAddress()
method.
InetAddress address = InetAddress.getByName("www.example.com");
System.out.println(address.getHostAddress());