美文网首页
Java 获取指定主机的IP地址

Java 获取指定主机的IP地址

作者: 西贝巴巴 | 来源:发表于2021-03-14 09:23 被阅读0次
    package com.company;
    
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    
    /*
    以下实例演示了如何使用 InetAddress 类的 InetAddress.getByName() 方法来获取指定主机(网址)的IP地址:
    
    */
    public class IpTest {
        public static void main(String[] args) {
            InetAddress address = null;
            try {
                address = InetAddress.getByName("www.runoob.com");
            } catch (UnknownHostException e) {
                System.exit(2);
            }
            System.out.println(address.getHostName() + " #### " + address.getHostAddress());
        }
    }
    

    相关文章

      网友评论

          本文标题:Java 获取指定主机的IP地址

          本文链接:https://www.haomeiwen.com/subject/oikcqltx.html