获取我的wifi ip地址Android

时间:2013-05-24 08:31:10

标签: android ip android-wifi android-networking

如何在wifi连接时获取手机的IP地址?

我找到了一个方法here,但它返回类似于24.182.239.255的东西,即使我在wifi下,我期望像192.168.1.10。

我想要像:

if (you are under wifi)
    String ip4 = getWifiIP()
else
    String ip4 = getIPAddress with the method linked before

非常感谢!

9 个答案:

答案 0 :(得分:70)

需要考虑的是Formatter.formatIpAddress(int)被弃用了:

  

此方法在API级别12中已弃用。   使用getHostAddress(),它支持IPv4和IPv6地址。此方法不支持IPv6地址。

因此使用formatIpAddress(int)可能不是一个好的长期解决方案,尽管它可行。

如果您希望获得WiFi接口的IP地址,这是一个潜在的解决方案:

protected String wifiIpAddress(Context context) {
    WifiManager wifiManager = (WifiManager) context.getSystemService(WIFI_SERVICE);
    int ipAddress = wifiManager.getConnectionInfo().getIpAddress();

    // Convert little-endian to big-endianif needed
    if (ByteOrder.nativeOrder().equals(ByteOrder.LITTLE_ENDIAN)) {
        ipAddress = Integer.reverseBytes(ipAddress);
    }

    byte[] ipByteArray = BigInteger.valueOf(ipAddress).toByteArray();

    String ipAddressString;
    try {
        ipAddressString = InetAddress.getByAddress(ipByteArray).getHostAddress();
    } catch (UnknownHostException ex) {
        Log.e("WIFIIP", "Unable to get host address.");
        ipAddressString = null;
    }

    return ipAddressString;
}

如前面的回复中所述,您需要在 AndroidManifest.xml 中设置以下内容:

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

请注意,这只是一个示例解决方案。您应该花时间检查空值等,以确保UX顺利进行。

具有讽刺意味的是,谷歌一方面弃用formatIpAddress(int),但仍有getIpAddress()仍然返回一个整数值。作为int的IP地址也规定它符合IPv6标准。

接下来是字节序可能是也可能不是问题。我只测试了三个设备,它们都是小端的。似乎字节顺序可能因硬件而异,即使我们在VM中运行,这仍然是一个问题。因此,为了安全起见,我在代码中添加了一个字节序检查。

getByAddress(byte[])似乎希望整数值为大端。从研究它看来,网络字节顺序是大端的。有意义,因为像192.168.12.22这样的地址是一个大端数字。


查看HammerNet GitHub项目。它实现了上面的代码以及一堆健全性检查,处理AVD默认值的能力,单元测试和其他东西。我必须为我的应用程序实现这个,并决定开源库。

答案 1 :(得分:42)

如果您想在连接到Wi-Fi时获取设备的私人IP地址,可以试试这个。

WifiManager wifiMgr = (WifiManager) getSystemService(WIFI_SERVICE);
WifiInfo wifiInfo = wifiMgr.getConnectionInfo();
int ip = wifiInfo.getIpAddress();
String ipAddress = Formatter.formatIpAddress(ip);

请务必添加权限

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

到您的清单。

答案 2 :(得分:8)

这将为您提供WiFi IPv4,IPv6或两者。

public static Enumeration<InetAddress> getWifiInetAddresses(final Context context) {
    final WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
    final WifiInfo wifiInfo = wifiManager.getConnectionInfo();
    final String macAddress = wifiInfo.getMacAddress();
    final String[] macParts = macAddress.split(":");
    final byte[] macBytes = new byte[macParts.length];
    for (int i = 0; i< macParts.length; i++) {
        macBytes[i] = (byte)Integer.parseInt(macParts[i], 16);
    }
    try {
        final Enumeration<NetworkInterface> e =  NetworkInterface.getNetworkInterfaces();
        while (e.hasMoreElements()) {
            final NetworkInterface networkInterface = e.nextElement();
            if (Arrays.equals(networkInterface.getHardwareAddress(), macBytes)) {
                return networkInterface.getInetAddresses();
            }
        }
    } catch (SocketException e) {
        Log.wtf("WIFIIP", "Unable to NetworkInterface.getNetworkInterfaces()");
    }
    return null;
}

@SuppressWarnings("unchecked")
public static<T extends InetAddress> T getWifiInetAddress(final Context context, final Class<T> inetClass) {
    final Enumeration<InetAddress> e = getWifiInetAddresses(context);
    while (e.hasMoreElements()) {
        final InetAddress inetAddress = e.nextElement();
        if (inetAddress.getClass() == inetClass) {
            return (T)inetAddress;
        }
    }
    return null;
}

用法:

final Inet4Address inet4Address = getWifiInetAddress(context, Inet4Address.class);
final Inet6Address inet6Address = getWifiInetAddress(context, Inet6Address.class);

不要忘记:

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

答案 3 :(得分:2)

根据我的崩溃日志,似乎不是每个设备都返回WiFi mac地址。

这是最受欢迎的回复的清洁版本。

final WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
final ByteBuffer byteBuffer = ByteBuffer.allocate(4);
byteBuffer.order(ByteOrder.LITTLE_ENDIAN);
byteBuffer.putInt(wifiInfo.getIpAddress());
try {
final InetAddress inetAddress = InetAddress.getByAddress(null, byteBuffer.array());
} catch (UnknownHostException e) {
    //TODO: Return null?
}

答案 4 :(得分:1)

如果在终端中安装了adb,请执行以下操作:

Runtime.getRuntime.exec("adb", "shell", "getprop", "dhcp.wlan0.ipaddress");

答案 5 :(得分:1)

找到了这个很好的答案,https://gist.github.com/stickupkid/1250733

WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE);
WifiInfo wifiInfo = wifiManager.getConnectionInfo();
int ipAddress = wifiInfo.getIpAddress();
String ipString = String.format(“%d.%d.%d.%d”, (ip & 0xff), (ip >> 8 & 0xff), (ip >> 16 & 0xff), (ip >> 24 & 0xff));

答案 6 :(得分:0)

添加以下权限。

<TextView
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:maxLength="15"
    android:ellipsize="end"
    tools:text="123456789qwertyuiopasdfghjklzxcvbnm"
    android:textSize="50sp"
/>

WifiManager在onCreate中初始化。

 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

使用以下功能。

 WifiManager wifiMgr = (WifiManager) getContext().getSystemService(context.WIFI_SERVICE);

答案 7 :(得分:0)

以下代码来自AOSP设置。它获得了主动链接的IP,无论是wifi还是移动设备。这是最常见的方式。

http://androidxref.com/8.0.0_r4/xref/packages/apps/Settings/src/com/android/settings/deviceinfo/Status.java#251

Table t = doc.AddTable(1, 5);
t.SetWidthsPercentage(new[] { 20f, 20f, 40f, 10f, 10f }, 500);

答案 8 :(得分:-1)

不推荐使用Formatter.formatIpAddress(int):

WifiManager wm = (WifiManager) getSystemService(WIFI_SERVICE);
String ipAddress = BigInteger.valueOf(wm.getDhcpInfo().netmask).toString();