FileDocCategorySizeDatePackage
AllAddressesOfMicrosoft.javaAPI DocExample423Sun Dec 12 10:51:38 GMT 2004None

AllAddressesOfMicrosoft

public class AllAddressesOfMicrosoft extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)


    try {
      InetAddress[] addresses = 
       InetAddress.getAllByName("www.microsoft.com");
      for (int i = 0; i < addresses.length; i++) {
        System.out.println(addresses[i]);
      }
    }
    catch (UnknownHostException ex) {
      System.out.println("Could not find www.microsoft.com");
    }