android 获取 网络连接
一、终端: 历史连接密码(需root)
adb shell cat /data/misc/wifi/wpa_supplicant.conf #查看
当前wifi网络
adb shell netcfg
adb shell ifconfig wlan0
linux命令:
linux的ip命令和ifconfig类似,但前者功能更强大,并旨在取代后者。使用ip命令。
ch查看
/# ip addr show wlan0
二、WifiManage获取:
WifiInfo wifiInfo = wifiMgr.getConnectionInfo();
int ip = wifiInfo.getIpAddress();
String sip = Formatter.formatIpAddress(ip);