设备连接Wi-Fi后,如何获取当前设备的IP地址?

设备连接Wi-Fi后,如何获取当前设备的IP地址

阅读 877
1 个回答

解决措施

使用wifiManager模块获取ipInfo,然后转换为IP常用格式,注意wifiManager.getIpInfo()接口需要权限 ohos.permission.GET_WIFI_INFO。

代码示例

import { wifiManager } from '@kit.ConnectivityKit'; 
 
let ipAddress = wifiManager.getIpInfo().ipAddress; 
let ip = (ipAddress >>> 24) + "." + (ipAddress >> 16 & 0xFF) + "." + (ipAddress >> 8 & 0xFF) + "." + (ipAddress & 0xFF);
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题