Java InetAddress类的使用

InetAddress类概述

一个个该类的对象就代表一个IP地址对象。

InetAddress类成员方法:

static InetAddress getLocalHost()
获得本地主机IP地址对象。

static InetAddress getByName(String host)
根据IP地址字符串或主机名获得对应的IP地址对象。

String getHostName()
获得主机名。

String getHostAddress()
获得IP地址字符串。
    public static void main(String[] args) throws Exception {

        //获取本地主机ip对象
        InetAddress localHost = InetAddress.getLocalHost();
        //获取名称
        System.out.println(localHost.getHostName());
        //获取地址
        System.out.println(localHost.getHostAddress());

        //获得一个指定的ip对象
        InetAddress byName = InetAddress.getByName("www.baidu.com");
        //获取名称
        System.out.println(byName.getHostName());
        //获取地址
        System.out.println(byName.getHostAddress());

        System.out.println(byName.isReachable(5000));//5秒内能否ping通
    }

你可能感兴趣的:(Java)