how to get ip address of pc in android emulator th

2019-02-18 19:20发布

i am using the code of this link How to get IP address of the device from code? but getting ip address different than from my machine....how can i get the ip address of my machine on android emulator..

thanks in advance

2条回答
甜甜的少女心
2楼-- · 2019-02-18 19:59

import the package java.net;

and write the code,

try {
InetAddress thisIp =InetAddress.getLocalHost();
System.out.println("IP:"+thisIp.getHostAddress());
}
catch(Exception e) {
e.printStackTrace();
}
查看更多
SAY GOODBYE
3楼-- · 2019-02-18 20:18

Check this out if you want to access host machine.

Another solution is to run this on shell

$ adb shell am start -a android.intent.action.WEB_SEARCH -e query "what is my ip"

it will display your system IP

查看更多
登录 后发表回答