本帖最后由 任江峰 于 2013-5-20 17:33 编辑
需要加try,catch块。我加了以后可以运行。当然必须要联网才行。- import java.net.InetAddress;
- import java.net.UnknownHostException;
- public class TestIPAddress {
- public static void main(String[] args) {
- InetAddress[] ia=null;
- try {
- ia = InetAddress.getAllByName("www.baidu.com");
- } catch (UnknownHostException e) {
- e.printStackTrace();
- }
-
- for(InetAddress x:ia){
- System.out.println(x.getHostAddress());
- }
- }
- }
- /*
- 运行结果:
- 220.181.111.148
- 220.181.112.143
- */
复制代码 黑马云青年为您解答。 |