如何找到Android设备的局域网IP地址?

前端之家收集整理的这篇文章主要介绍了如何找到Android设备的局域网IP地址?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果连接了设备的wifi,我假设设备有一个LAN IP地址,可能是由路由器上运行的dhcp分配的.

怎么能找到wifi接口上的LAN IP地址(不是外部ip)?

谢谢,

解决方法

NetworkInterface将帮助您:
String ipAddress = null;
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()) {
                ipAddress = inetAddress.getHostAddress().toString();
            }
        }
    }
} catch (SocketException ex) {}
原文链接:https://www.f2er.com/android/308986.html

猜你在找的Android相关文章