如何获取Android Emulator的IP地址?

时间:2009-11-12 06:44:25

标签: android ip avd

我希望通过代码获取当前正在运行的Android Emulator的IP地址。 如何实现?

7 个答案:

答案 0 :(得分:133)

只是为了澄清:在您的应用程序中,您可以简单地将模拟器称为“localhost”或127.0.0.1。

Web流量通过您的开发计算机进行路由,因此模拟器的外部IP是您的提供商为该计算机分配的IP。始终可以通过10.0.2.2的设备访问开发机器。

由于您只询问模拟器的IP ,您尝试做什么?

答案 1 :(得分:32)

如果您真的想要分配给模拟器的IP:

adb shell
ifconfig eth0

这会给你类似的东西:

eth0: ip 10.0.2.15 mask 255.255.255.0 flags [up broadcast running multicast]

答案 2 :(得分:25)

像这样:

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;
}

查看文档以获取更多信息:NetworkInterface

答案 3 :(得分:17)

使用此方法您将获得100%正确的Android模拟器IP地址

获取yoor模拟器的IP地址

转到adb shell并输入此命令

adb shell
ifconfig eth0

enter image description here

运行此命令后,我正在

IP:10.0.2.15

面具:255.255.255.0

哪个适合我。我也在为网络应用程序工作。

答案 4 :(得分:8)

如果需要引用主机的localhost,例如当您希望模拟器客户端与运行在同一主机上的服务器联系时,请使用别名 10.0.2.2 来引用主机计算机的环回接口。从模拟器的角度来看, localhost(127.0.0.1)指的是它自己的环回接口。更多细节:http://developer.android.com/guide/faq/commontasks.html#localhostalias

答案 5 :(得分:3)

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;
}

答案 6 :(得分:0)

在我的应用程序代码内,我可以像下面这样轻松地获得正在运行的设备IP和ress:

WifiManager wm = (WifiManager) getSystemService(WIFI_SERVICE);
String ip = Formatter.formatIpAddress(wm.getConnectionInfo().getIpAddress());