• 网站地图|收藏本站|数学学习|学习方法|电脑学习|教学大全|生活常识|句子大全|管理资料下载|范文大全
  • JAVA获得域名的IP地址

    时间:10-14 10:27:50来源:http://www.laixuea.com 电脑技巧阅读:8688

    概要:import java.net.InetAddress;import java.net.UnknownHostException;public class TestInetAddress {InetAddress myIpAddress = null;InetAddress[] myServer = null;public static void main(String args[]) {TestInetAddress address = new TestInetAddress();System.out.println(“Your host IP is: ” + address.getLocalhostIP());String domain = “www.163.com”;System.out.println(“The server domain name is: ” + domain);InetAddress[] array = address.getServerIP(domain);int count=

    JAVA获得域名的IP地址,标签:电脑技巧大全,电脑技术,http://www.laixuea.com

    import java.net.InetAddress;

    import java.net.UnknownHostException;

    public class TestInetAddress {

    InetAddress myIpAddress = null;

    InetAddress[] myServer = null;

    public static void main(String args[]) {

    TestInetAddress address = new TestInetAddress();

    System.out.println(“Your host IP is: ” + address.getLocalhostIP());

    String domain = “www.163.com”;

    System.out.println(“The server domain name is: ” + domain);

    InetAddress[] array = address.getServerIP(domain);

    int count=0;

    for(int i=1; i《array.length; i++){

    System.out.println(“ip ”+ i +“ ”+ address.getServerIP(domain)[i-1]);

    count++;

    }

    System.out.println(“IP address total: ”+count);

    }

    /**

    * 获得 localhost 的IP地址

    * @return

    */

    public InetAddress getLocalhostIP() {

    try {

    myIpAddress = InetAddress.getLocalHost();

    } catch (UnknownHostException e) {

    e.printStackTrace();

    }

    return (myIpAddress);

    }

    /**

    * 获得某域名的IP地址

    * @param domain 域名

    * @return

    */

    public InetAddress[] getServerIP(String domain) {

    try {

    myServer = InetAddress.getAllByName(domain);

    } catch (UnknownHostException e) {

    e.printStackTrace();

    }

    return (myServer);

    }

    }


    Tag:电脑技巧电脑技巧大全,电脑技术电脑学习 - 电脑技巧