Java 范例 - 获取指定主机的 IP 地址

返回上一级

使用 InetAddress 类的 InetAddress.getByName() 方法来获取指定主机 ( 网址 ) 的 IP 地址

import java.net.InetAddress;
import java.net.UnknownHostException;

public class GetIP {
    public static void main(String[] args) {
        InetAddress address = null;
        try {
            address = InetAddress.getByName("www.twle.cn");
        }
        catch (UnknownHostException e) {
            System.exit(2);
        }
        System.out.println(address.getHostName() + "=" + address.getHostAddress());
        System.exit(0);
    }
}

编译运行以上 Java 代码,输出结果如下

www.twle.cn=222.73.134.120

返回上一级

Java 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.