FileDocCategorySizeDatePackage
OReillyByName.javaAPI DocExample328Sun Dec 12 10:51:48 GMT 2004None

OReillyByName.java

import java.net.*;

public class OReillyByName {

  public static void main (String[] args) {

    try {
      InetAddress address = InetAddress.getByName("www.oreilly.com");
      System.out.println(address);
    }
    catch (UnknownHostException ex) {
      System.out.println("Could not find www.oreilly.com");
    }

  }

}