home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / test / network / whatip2.java < prev   
Text File  |  1996-09-28  |  410b  |  19 lines

  1. import java.io.*;
  2. import java.net.*;
  3.  
  4. class whatip2 {
  5.  
  6.   public static void main(String a[]) throws IOException {
  7.  
  8.     try {
  9.       System.out.println("hostname is " + a[0] );
  10.  
  11.       InetAddress InetAddr = InetAddress.getByName (a[0]);
  12.       System.out.println("inet address is " + InetAddr.toString() );
  13.     }
  14.     catch (Throwable t) {
  15.       System.out.println("Catched error " + t.toString() );
  16.     }
  17.   }  
  18. }
  19.