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
Wrap
Text File
|
1996-09-28
|
410b
|
19 lines
import java.io.*;
import java.net.*;
class whatip2 {
public static void main(String a[]) throws IOException {
try {
System.out.println("hostname is " + a[0] );
InetAddress InetAddr = InetAddress.getByName (a[0]);
System.out.println("inet address is " + InetAddr.toString() );
}
catch (Throwable t) {
System.out.println("Catched error " + t.toString() );
}
}
}