getHostAddress()返回一个反向的ip地址

时间:2015-04-29 07:47:52

标签: java android ipv4

我试图通过使用WifiManager和WifiInfo类来获取我的手机IP地址。

它返回正确的IP地址。

public String getWifiIpAddress() {
    WifiManager wm = (WifiManager) getSystemService(WIFI_SERVICE);
    WifiInfo wi = wm.getConnectionInfo();

    byte[] ipAddress = BigInteger.valueOf(wi.getIpAddress()).toByteArray();
    try {
        InetAddress myAddr = InetAddress.getByAddress(ipAddress);
        String hostAddr = myAddr.getHostAddress();
        return hostAddr;
    } catch (UnknownHostException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    return "";
}

结果:73.0.168.192

1 个答案:

答案 0 :(得分:9)

好的,我刚刚看到你的地址被颠倒了! :)

它被称为大/小端问题,请阅读有关Endianness的更多内容,这是所有程序员必须知道的,特别是在不同操作系统上进行应用程序集成和迁移时。

从Wifi管理器获取连接信息后添加此内容。

int ipAddress = wi.getIpAddress();

ipAddress = (ByteOrder.nativeOrder().equals(ByteOrder.LITTLE_ENDIAN)) ? 
                Integer.reverseBytes(ipAddress) : ipAddress;

然后使用toByteArray和getHostAddress等继续你的代码。