FileDocCategorySizeDatePackage
ReverseTest.javaAPI DocExample293Sun Dec 12 10:51:52 GMT 2004None

ReverseTest.java

import java.net.*;

public class ReverseTest {

  public static void main (String[] args) {
  
    try {
      InetAddress ia = InetAddress.getByName("208.201.239.37");
      System.out.println(ia.getHostName());
    }
    catch (Exception ex) {
      System.err.println(ex);
    }
   
  }

}