zoukankan      html  css  js  c++  java
  • How do I use a host name to look up an IP address?

    The InetAddress class can be used to perform Domain Name Server (DNS) lookups. For example, you can call the static InetAddress.getByName("www.teamcakes.com") to retrieve an InetAddress object for 'www.teamcakes.com'. This object would contain the canonical name, host name, and ip address of 'www.teamcakes.com'.

    The DnsTest class below demonstrates InetAddress.getLocalHost(), which obtains an Internet Address for your local host. It also demonstrates InetAddress.getByName("www.google.com"), which gives an Internet Address object for 'www.google.com'. However, it should be noted that a DNS name can map to multiple servers, and the InetAddress.getAllByName("www.google.com") call retrieves an array of InetAddress objects that represent all of the 'www.google.com' servers retrieved from DNS.

    package org.javalobby.tnt.net;
    
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    
    public class DnsTest {
        public static void main(String[] args) {
            try {
                InetAddress inetAddress = InetAddress.getLocalHost();
                displayStuff("local host", inetAddress);
                System.out.print("--------------------------");
                inetAddress = InetAddress.getByName("www.baidu.com");
                displayStuff("www.baidu.com", inetAddress);
                System.out.print("--------------------------");
                InetAddress[] inetAddressArray = InetAddress.getAllByName("www.baidu.com");
                for (int i = 0; i < inetAddressArray.length; i++) {
                    displayStuff("www.baidu.com #" + (i + 1), inetAddressArray[i]);
                }
            } catch (UnknownHostException e) {
                e.printStackTrace();
            }
        }
    
        public static void displayStuff(String whichHost, InetAddress inetAddress) {
            System.out.println("--------------------------");
            System.out.println("Which Host:" + whichHost);
            System.out.println("Canonical Host Name:" + inetAddress.getCanonicalHostName());
            System.out.println("Host Name:" + inetAddress.getHostName());
            System.out.println("Host Address:" + inetAddress.getHostAddress());
        }
    }

    If we execute DnsTest, we obtain the following console results:

    --------------------------
    Which Host:local host
    Canonical Host Name:DERBIZZ
    Host Name:DERBIZZ
    Host Address:192.168.1.106
    ----------------------------------------------------
    Which Host:www.baidu.com
    Canonical Host Name:180.97.33.108
    Host Name:www.baidu.com
    Host Address:180.97.33.108
    ----------------------------------------------------
    Which Host:www.baidu.com #1
    Canonical Host Name:180.97.33.108
    Host Name:www.baidu.com
    Host Address:180.97.33.108
    --------------------------
    Which Host:www.baidu.com #2
    Canonical Host Name:61.135.169.121
    Host Name:www.baidu.com
    Host Address:61.135.169.121
    --------------------------
    Which Host:www.baidu.com #3
    Canonical Host Name:61.135.169.125
    Host Name:www.baidu.com
    Host Address:61.135.169.125
    --------------------------
    Which Host:www.baidu.com #4
    Canonical Host Name:180.97.33.107
    Host Name:www.baidu.com
    Host Address:180.97.33.107

    As you can see, the InetAddress class allows us to perform DNS lookups and retrieve canonical host names, host names, and IP addresses. The results above show us that multiple servers can be represented by one host name, and these can be distinguished by their different IP (host) addresses and canonical host names.

    Just as an aside(一句顺便插), what happens if we try doing a lookup on a host that doesn't exist, such as: InetAddress.getByName("www.this-host-does-not-exist.com")? An UnknownHostException is thrown, as shown below.

    java.net.UnknownHostException: www.this-host-does-not-exist.com: www.this-host-does-not-exist.com
        at java.net.InetAddress.getAllByName0(InetAddress.java:1128)
        at java.net.InetAddress.getAllByName0(InetAddress.java:1098)
        at java.net.InetAddress.getAllByName(InetAddress.java:1061)
        at java.net.InetAddress.getByName(InetAddress.java:958)
        at test.DnsTest.main(DnsTest.java:12)
  • 相关阅读:
    [eclipse]如何修改Eclipse编辑器的字体
    评CSDN上一篇讲述数据迁移的文章“程序员 12 小时惊魂记:凌晨迁移数据出大事故!”
    [Java]算术表达式组建二叉树,再由二叉树得到算式的后序和中序表达式
    [Java]算术表达式求值之三(中序表达式转二叉树方案 支持小数)
    [Java]手动构建表达式二叉树,求值,求后序表达式
    转载:构建语法树来解析数学表达式
    Oracle:Enterprise Manager 无法连接到数据库实例。下面列出了组件的状态。 以及 Oracle11g OracleDBConsoleorcl服务无法启动问题
    一个完整的企业Java项目的生命周期
    安装最新版本的Oracle公司的虚拟机软件 VirtualBox + 安装虚拟机 Windows XP 系统 + 安装 Oracle 11g 软件 + 出现 ERROR: ORA-12541: TNS:no listener 错误解决 + Oracle 11g数据库详细“卸载”步骤
    js的跨域问题 和 jQuery的跨域问题
  • 原文地址:https://www.cnblogs.com/ghgyj/p/4039362.html
Copyright © 2011-2022 走看看