Android开启WiFi热点时App可以监听设备本身的IP吗?
ringa_lee
ringa_lee 2017-04-17 17:56:24
0
1
484

Android开启WiFi热点后如何获取自己本身的IP地址?

ringa_lee
ringa_lee

ringa_lee

全部回覆(1)
PHPzhong

用下這個方法,可以取得到你的開啟hotpspot之後的ip

public String getWifiApIpAddress() {
    try {
        for (Enumeration<NetworkInterface> en = NetworkInterface
                .getNetworkInterfaces(); en.hasMoreElements();) {
            NetworkInterface intf = en.nextElement();
            if (intf.getName().contains("wlan")) {
                for (Enumeration<InetAddress> enumIpAddr = intf
                        .getInetAddresses(); enumIpAddr.hasMoreElements();) {
                    InetAddress inetAddress = enumIpAddr.nextElement();
                    if (!inetAddress.isLoopbackAddress()
                            && (inetAddress.getAddress().length == 4)) {
                        Log.d(TAG, inetAddress.getHostAddress());
                        return inetAddress.getHostAddress();
                    }
                }
            }
        }
    } catch (SocketException ex) {
        Log.e(TAG, ex.toString());
    }
    return null;
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板