如何从代码中获取设备的 IP 地址?

How to get IP address of the device from code?(如何从代码中获取设备的 IP 地址?)

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

本文标题为:如何从代码中获取设备的 IP 地址?