如何让PC的IP地址,通过代码Android模拟器(how to get ip address of

2019-06-23 13:24发布

我使用这个链接的代码如何从代码中的设备的IP地址? 但得到比我的机器不同的IP地址....我怎么能得到我的机器上Android模拟器的IP地址..

提前致谢

Answer 1:

检查了这一点 ,如果你要访问的主机。

另一种方法是在shell中运行这个

$亚行外壳上午开始-a android.intent.action.WEB_SEARCH -e查询“什么是我的IP”

它会显示你的系统IP



Answer 2:

导入包java.net;

和编写代码,

try {
InetAddress thisIp =InetAddress.getLocalHost();
System.out.println("IP:"+thisIp.getHostAddress());
}
catch(Exception e) {
e.printStackTrace();
}


文章来源: how to get ip address of pc in android emulator through code