FileDocCategorySizeDatePackage
OReillyByAddress.javaAPI DocExample329Sun Dec 12 10:51:46 GMT 2004None

OReillyByAddress.java

import java.net.*;

public class OReillyByAddress {

  public static void main (String[] args) {

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

  }

}