我正在使用此链接How to get IP address of the device from code?的代码,但获取的IP地址与我的机器不同....如何在Android模拟器上获取我的机器的IP地址..
提前致谢
答案 0 :(得分:3)
Check this out如果您想访问主机。
另一个解决方案是在shell上运行它
$ adb shell am start -a android.intent.action.WEB_SEARCH -e query“what is my ip”
它将显示您的系统IP
答案 1 :(得分:0)
导入包java.net;
并编写代码,
try {
InetAddress thisIp =InetAddress.getLocalHost();
System.out.println("IP:"+thisIp.getHostAddress());
}
catch(Exception e) {
e.printStackTrace();
}