繁体   English   中英

Java:在我的家庭网络中获得自己的IP地址

[英]Java: Get my own ip address in my home network

我在网上找到两个示例,以获取路由器给我PC的IP地址。 这是代码:

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

public class tryNet {

public static void displayStuff(String whichHost, InetAddress inetAddr) {
    System.out.println("---------------------");
    System.out.println("host: " + whichHost);
    System.out.println("Canonical host name: " + inetAddr.getCanonicalHostName());
    System.out.println("Host Name: " + inetAddr.getHostName());
    System.out.println("Host Address: " + inetAddr.getHostAddress());
    System.out.println("---------------------");
}


public static void main(String argv[]) {
    try {
        InetAddress inetAddr = InetAddress.getLocalHost();
        displayStuff("localhost", inetAddr);
    }

    catch (UnknownHostException e) {
        e.printStackTrace();
    }
}

}

我已经阅读了初始化InetAddress inetAddr = InetAddress.getLocalHost();之后的内容。 我可以使用inetAddr.getHostAddress()方法获取我的IP地址,这是我的路由器给定的IP地址(例如,在ubuntu的终端中写入ifconfig或在Windows中的ipconfig),而是返回我的环回地址...(127.0) .0.1)为什么?

您的PC具有多个接口(至少两个)和多个IP地址(当然,如果已插入网络)。 通常, localhost将解析为127.0.0.1 (在回送接口上),而您正在使用的各种方法将返回该值。

下面将向您显示计算机上的所有接口以及分配给它们的IP地址:

public static void main(String[] args) throws InterruptedException, IOException
{
    Enumeration<NetworkInterface> e = NetworkInterface.getNetworkInterfaces();
    while (e.hasMoreElements())
    {
        NetworkInterface n = e.nextElement();
        System.out.println(n.getName());
        Enumeration<InetAddress> ee = n.getInetAddresses();
        while (ee.hasMoreElements())
        {
            InetAddress i = ee.nextElement();
            System.out.println(i.getHostAddress());
        }
    }
}

通常,主机的名称指向环回接口。 DHCP服务器分配了IP地址。 根据您的dhcp客户端配置,主机也可能会使用新名称。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM