6 lines
255 B
Java
6 lines
255 B
Java
|
|
public static void main(String[] args) throws UnknownHostException {
|
||
|
|
/* 'getAllByName' will use the system configured 'resolver' */
|
||
|
|
for (InetAddress ip : InetAddress.getAllByName("www.kame.net"))
|
||
|
|
System.out.println(ip.getHostAddress());
|
||
|
|
}
|