本文介绍了如何从代码中获取设备的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地址?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!