从 Android 模拟器 Ping 主机
我正在尝试从 Android 模拟器访问我的开发 Ubuntu 机器中托管的网页。我可以从模拟器浏览互联网,但无法访问主机开发机器上的网页,出现 tcp_error。我也无法 ping 通主机。我尝试使用主机的 IP 地址而不是 localhost 或 127.0.0.1。
有什么想法吗?
I am trying access web page hosted in my dev Ubuntu machine from android emulator. I am able to browse internet from emulator but web page from the host dev machine is not accessible, giving tcp_error. I am not able to ping the host machine too. I tried using ip address of host not localhost or 127.0.0.1.
any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据Google的官方文档,
10.0.2.2
是主机环回接口的特殊别名(即开发计算机上的127.0.0.1
)。因此,您可以尝试连接
10.0.2.2
作为您的主机地址,以从您的主机开发计算机访问您的网页。According to Google's official document,
10.0.2.2
is a special alias to host loopback interface (i.e.,127.0.0.1
on your development machine).So you can try to connect
10.0.2.2
as your host address to access your web pages from your host dev machine.您必须将此行放在 AndroidManifest.xml 中的 android:minSdkVersion 标记之后,
希望它能正常工作;)
you have to put this line just after android:minSdkVersion tag in your AndroidManifest.xml
Hope it works ;)