我使用这个链接的代码如何从代码中的设备的IP地址? 但得到比我的机器不同的IP地址....我怎么能得到我的机器上Android模拟器的IP地址..
提前致谢
我使用这个链接的代码如何从代码中的设备的IP地址? 但得到比我的机器不同的IP地址....我怎么能得到我的机器上Android模拟器的IP地址..
提前致谢
检查了这一点 ,如果你要访问的主机。
另一种方法是在shell中运行这个
$亚行外壳上午开始-a android.intent.action.WEB_SEARCH -e查询“什么是我的IP”
它会显示你的系统IP
导入包java.net;
和编写代码,
try {
InetAddress thisIp =InetAddress.getLocalHost();
System.out.println("IP:"+thisIp.getHostAddress());
}
catch(Exception e) {
e.printStackTrace();
}