是否有可能从Android应用程序获取IP地址?
答案 0 :(得分:3)
答案 1 :(得分:3)
我在书签中保留了一段时间,但从未对其进行过测试:
http://www.droidnova.com/get-the-ip-address-of-your-device,304.html
public String getLocalIpAddress() {
try {
for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) {
NetworkInterface intf = en.nextElement();
for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) {
InetAddress inetAddress = enumIpAddr.nextElement();
if (!inetAddress.isLoopbackAddress()) {
return inetAddress.getHostAddress().toString();
}
}
}
} catch (SocketException ex) {
Log.e(LOG_TAG, ex.toString());
}
return null;
}
答案 2 :(得分:1)
如果您使用系绳应用程序进行Android数据连接,请使用系绳连接到PC。找到ad hoc连接并连接。然后右键单击并选择状态。这将为您提供手机的IP地址。我使用Android应用程序“Barnicle WiFi tether”并使用Windows 7 PC。