FileDocCategorySizeDatePackage
OReillyByAddress.javaAPI DocExample324Sat Sep 09 19:53:46 BST 2000None

OReillyByAddress.java

import java.net.*;

public class OReillyByAddress {

  public static void main (String[] args) {

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

  }

}