我该如何获取我的机器专用IP地址

时间:2018-10-12 07:01:29

标签: java ip-address

我想获取我的Java程序的机器IP地址。我为此使用了以下代码。

InetAddress inetAddress = null;
    try {
        inetAddress = InetAddress.getLocalHost();
    } catch (UnknownHostException e2) {
        e2.printStackTrace();
    }
    String ipAddress=inetAddress.getHostAddress();

然后我得到输出:127.0.1.1

这不是我的IP地址。请帮助我解决我的问题。谢谢...

0 个答案:

没有答案