RosettaCodeData/Task/DNS-query/Java/dns-query-2.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());
}