2015-05-05 11:20:13 -07:00

20 lines
459 B
Java

//: network/WhoAmI.java
// Finds out your network address when you're
// connected to the Internet.
// {Args:MindviewToshibaLaptop}
import java.net.*;
public class WhoAmI {
public static void main(String[] args)
throws Exception {
if(args.length != 1) {
System.err.println(
"Usage: WhoAmI MachineName");
System.exit(1);
}
InetAddress a =
InetAddress.getByName(args[0]);
System.out.println(a);
}
} ///:~