How to get IP address of the device from code?(如何从代码中获取设备的 IP 地址?)
问题描述
是否可以使用某些代码获取设备的 IP 地址?
Is it possible to get the IP address of the device using some code?
推荐答案
在AndroidManifest.xml
中声明的ACCESS_WIFI_STATE
权限:
<uses-permission
android:name="android.permission.ACCESS_WIFI_STATE"/>
可以通过WifiManager
获取IP地址:
One can use the WifiManager
to obtain the IP address:
Context context = requireContext().getApplicationContext();
WifiManager wm = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
String ip = Formatter.formatIpAddress(wm.getConnectionInfo().getIpAddress());
这篇关于如何从代码中获取设备的 IP 地址?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!