0

可能重复:
如何获取 Android 模拟器的 IP 地址?

我编写了一个 android 应用程序以从安装了我的 android 模拟器的 pc 上创建的 mysql 数据库中获取数据。我必须在 http post 请求中设置什么 IP 地址才能获得访问权限?

提前致谢

4

1 回答 1

0

只需输入这些代码行即可获取当前模拟器的 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;
}

它将在字符串的 for 中返回您的模拟器的 IP 地址。

于 2012-09-08T15:37:10.460 回答