Mega Code Archive

 
Categories / Java Tutorial / Network
 

Getting the IP Address of a Hostname

import java.net.InetAddress; public class Main {   public static void main(String[] argv) throws Exception {     InetAddress addr = InetAddress.getByName("www.google.com");     System.out.println(addr.getHostAddress());        } }