0

我是 android 开发的新手,我正在做一个应用程序,它通过短信将 android 设备的 IP 地址发送到另一个设备。我需要像 192.168.0.4 这样的十进制 IP,而不是从下面的代码中获得的十六进制 IP。任何想法如何做到这一点,并感谢您的帮助。

    public String getLocalIpAddress()
    {
        try {
            for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) {
                NetworkInterface intf = en.nextElement();
                for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) {
                    InetAddress inetAddress = enumIpAddr.nextElement();
                    if (!inetAddress.isLoopbackAddress()) {
                        return inetAddress.getHostAddress().toString();

                    }
                 }
             }
         } catch (SocketException ex) {
             Log.e(TAG, ex.toString());
         }

         return null;
    } 
4

4 回答 4

8
public static String getLocalIpv4Address(){
    try {
        String ipv4;
        List<NetworkInterface>  nilist = Collections.list(NetworkInterface.getNetworkInterfaces());
        if(nilist.size() > 0){
            for (NetworkInterface ni: nilist){
                List<InetAddress>  ialist = Collections.list(ni.getInetAddresses());
                if(ialist.size()>0){
                    for (InetAddress address: ialist){
                        if (!address.isLoopbackAddress() && InetAddressUtils.isIPv4Address(ipv4=address.getHostAddress())){ 
                            return ipv4;
                        }
                    }
                }

            }
        }

    } catch (SocketException ex) {

    }
    return "";
}

这应该可以吗?仅当可用时,此函数才会返回 ipv4(以 xxx.xxx.xxx.xxx 模式)。

请注意,您提到的那些十六进制值应该是 ipv6 地址。

于 2012-06-13T01:03:46.957 回答
3

这篇文章解释了如何获取设备的 IP。

这段代码(取自上述帖子)应该以正确的方式为您提供 IP 地址:

public String getLocalIpAddress() {
    try {
        for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) {
            NetworkInterface intf = en.nextElement();
            for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) {
                InetAddress inetAddress = enumIpAddr.nextElement();
                if (!inetAddress.isLoopbackAddress()) {
                    return inetAddress.getHostAddress().toString();
                }
            }
        }
    } catch (SocketException ex) {
        Log.e(LOG_TAG, ex.toString());
    }
    return null;
}
于 2012-06-11T18:09:01.223 回答
0

虽然 hungr 的回答是正确的,但我发现如果我循环遍历特定设备“wlan0”的 ip_addresses,例如,第一个地址是 ipv6,第二个是 ipv4。我只返回第一个值,这就是为什么我只得到一个十六进制字符串。

for (InetAddress inetAddress : Collections.list(inetAddresses)) {
                String ip_address = inetAddress.getHostAddress();
                Log.d(APP_NAME, "IP: " + ip_address);
                //return if_name + ": " + ip_address;
}

注意我注释掉了“return”

于 2014-11-23T22:36:20.760 回答
-1

此信息可从 shell 使用getprop命令获得。

于 2012-06-12T04:27:36.657 回答