1import java.net.InetAddress;
2
3public class GetInetAddress {
4
5 public static void main(String[] argv) {
6 try {
7 InetAddress address =
8 InetAddress.getByName(argv[0]);
9
10 System.out.println(address);
11 }
12 catch (Exception e) {
13 System.out.println(e);
14 }
15 }
16}