吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 6448|回复: 51
收起左侧

[其他转载] 连接WIFI工具类

  [复制链接]
dadashuai 发表于 2021-7-22 09:21
/**
 * wifi设置工具类
 *
 */
public class WIFIUtil {
    // 定义WifiManager对象
    private WifiManager mWifiManager;
    private DhcpInfo dhcpInfo;
    private List<WifiConfiguration> mWifiConfigurations;
    private ConnectivityManager mConnectivityManager;
    public WifiManager getmWifiManager() {
        return mWifiManager;
    }

    // 定义WifiInfo对象
    private WifiInfo mWifiInfo;
    Context context;
    // 扫描出的网络连接列表
    private List<ScanResult> mWifiList;

    // 构造器
    public WIFIUtil(Context context) {
        // 取得WifiManager对象
        mWifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
        // 取得WifiInfo对象
        mWifiInfo = mWifiManager.getConnectionInfo();
        dhcpInfo  = mWifiManager.getDhcpInfo();
        mWifiConfigurations=mWifiManager.getConfiguredNetworks();
        mConnectivityManager = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);
        this.context = context;

    }
    public void startScan(){
        mWifiManager.startScan();
        mWifiList=mWifiManager.getScanResults();
    }
    /**
     * 获取扫描到的wifi列表
     */
    public List<ScanResult> getWifiList(){
        return mWifiList;
    }
    // 得到MAC地址
    public String GetMacAddress() {
        return (mWifiInfo == null) ? "NULL" : mWifiInfo.getMacAddress();
    }

    // 得到接入点的BSSID
    public String GetBSSID() {
        return (mWifiInfo == null) ? "NULL" : mWifiInfo.getBSSID();
    }

    // 得到接入点的SSID
    public String GetSSID() {
        return (mWifiInfo == null) ? "NULL" : mWifiInfo.getSSID();
    }

    // 得到接入点的IP地址
    public String getIPAddress() {
        return (mWifiInfo == null) ? "NULL" : intToIp(dhcpInfo.ipAddress);
    }

    // 得到接入点的子网掩码
    public String getNetMask() {
        return (mWifiInfo == null) ? "NULL" : intToIp(dhcpInfo.netmask);
    }

    // 关闭WIFI
    public void CloseWifi() {
        if (!mWifiManager.isWifiEnabled()) {
            mWifiManager.setWifiEnabled(false);
        }
    }
    //判断wifi是否连接
    public static boolean isWifiConnect(Context context) {
        ConnectivityManager connManager = (ConnectivityManager) context
                .getSystemService(Context.CONNECTIVITY_SERVICE);
        NetworkInfo mWifi = connManager
                .getNetworkInfo(ConnectivityManager.TYPE_WIFI);
        return mWifi.getState() == NetworkInfo.State.CONNECTED;
    }

    public String getSSID() {
        if (mWifiInfo != null) {
            String temp = mWifiInfo.getSSID();
            if (temp != null && (temp.startsWith("\"") && temp.endsWith("\""))) {
                temp = temp.substring(1, temp.length() - 1);
                return temp;
            }
            return temp;
        } else {
            return "";
        }
    }

    // 定义几种加密方式,一种是WEP,一种是WPA,还有没有密码的情况
    /*
     * public enum WifiCipherType { NONE,WEP,WPA,EAP }
     */

    // 判断wifi是否加密:
    public static String getSecuritys(ScanResult result) {
        if (result.capabilities.contains("WEP")) {
            return "WEP";
        } else if (result.capabilities.contains("PSK")) {
            return "WPA";
        } else if (result.capabilities.contains("EAP")) {
            return "EAP";
        }
        return "NONE";
    }
    //获取wifi是那个加密类型
    public String getWifiCipherType(Context context, String ssid) {
        String type = null;
        mWifiManager = (WifiManager) context
                .getSystemService(Context.WIFI_SERVICE);
        mWifiList = mWifiManager.getScanResults();
        if (mWifiList != null) {
            for (int i = 0; i < mWifiList.size(); i++) {
                ScanResult sr = mWifiList.get(i);
                if (sr.SSID.equals(ssid))
                    type = getSecuritys(sr);
            }
        }
        if (type == null) {
            type = "WPA";
        }
        return type;
    }
    //获取wifi的信号大小
    public int getSignal(Context context, String ssid) {
        int signal = 100;
        mWifiManager = (WifiManager) context
                .getSystemService(Context.WIFI_SERVICE);
        mWifiList = mWifiManager.getScanResults();
        if (mWifiList != null) {
            for (int i = 0; i < mWifiList.size(); i++) {
                ScanResult sr = mWifiList.get(i);
                if (sr.SSID.equals(ssid))
                    signal = Math.abs(sr.level);
            }
        }

        return signal;
    }
    // 打开WIFI
    public boolean OpenWifi() {
        boolean bRet = true;
        if (!mWifiManager.isWifiEnabled()) {
            bRet = mWifiManager.setWifiEnabled(true);
            while (mWifiList == null || mWifiList.size() == 0) {
                try {
                    mWifiManager.startScan();
                    Thread.currentThread().sleep(1000);
                    mWifiList = mWifiManager.getScanResults();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
        return bRet;
    }
    //断判某个wifi是否是连接成功的那个wifi
    public boolean isConnectedWifi(Context context, String myssid){
        mWifiManager = (WifiManager) context.getApplicationContext()
                .getSystemService(Context.WIFI_SERVICE);
        if (isWifiConnect(context)) {
            WifiInfo wifiInfo = mWifiManager.getConnectionInfo();
            String ssid = wifiInfo.getSSID();
            Log.i("MainActivity", "isConnectedWifi: "+ssid);
            if (ssid != null && ssid.contains(myssid)) {
                return true;
            } else {
                return false;
            }
        }else{
            return false;
        }
    }

    public String getConnectWifiSsid(){
        mWifiManager = (WifiManager) context.getApplicationContext()
                .getSystemService(Context.WIFI_SERVICE);
        WifiInfo wifiInfo = mWifiManager.getConnectionInfo();
        Log.d("wifiInfo", wifiInfo.toString());
        Log.d("SSID",wifiInfo.getSSID());
        return wifiInfo.getSSID();
    }

    // 查看以前是否也配置过这个网络
    private WifiConfiguration IsExsits(String SSID) {
        List<WifiConfiguration> existingConfigs = mWifiManager
                .getConfiguredNetworks();
        if (existingConfigs != null) {
            for (WifiConfiguration existingConfig : existingConfigs) {
                if (existingConfig.SSID.equals("\"" + SSID + "\"")) {
                    return existingConfig;
                }
            }
        }
        return null;
    }

    //删除原来的所有连接
    private void deleteWifiConnect() {
        List<WifiConfiguration> existingConfigs = mWifiManager
                .getConfiguredNetworks();
        if (existingConfigs != null) {
            for (WifiConfiguration existingConfig : existingConfigs) {
                mWifiManager.disableNetwork(existingConfig.networkId);
            }

        }
    }

    // 提供一个外部接口,传入要连接的无线网
    public boolean connectNet(String SSID, String Password, String Type) {
        WifiConfiguration tempConfig = this.IsExsits(SSID);
        if (tempConfig != null) {
            mWifiManager.removeNetwork(tempConfig.networkId);
        }
//    deleteWifiConnect();
//    forgetWifi(SSID);
        WifiConfiguration wifiConfig = this
                .CreateWifiInfo(SSID, Password, Type);
        int netID = mWifiManager.addNetwork(wifiConfig);
        boolean bRet = mWifiManager.enableNetwork(netID, true);
        mWifiManager.reconnect();
        return bRet;
    }
    public boolean connectNewNet(String SSID, String Password, int Type){
        WifiConfiguration configuration = this
                .createWifiInfo(SSID, Password, Type);
        int wcgId=mWifiManager.addNetwork(configuration);
        mWifiManager.enableNetwork(wcgId, true);
        boolean reconnect = mWifiManager.reconnect();
        return reconnect;
    }

    private WifiConfiguration CreateWifiInfo(String SSID, String Password,
                                             String Type) {
        WifiConfiguration config = new WifiConfiguration();
        config.allowedAuthAlgorithms.clear();
        config.allowedGroupCiphers.clear();
        config.allowedKeyManagement.clear();
        config.allowedPairwiseCiphers.clear();
        config.allowedProtocols.clear();
        config.SSID = "\"" + SSID + "\"";

        if (Type.equals("NONE")) {
            config.wepKeys[0] = "";
            config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
            config.wepTxKeyIndex = 0;
        } else if (Type.equals("WEP")) {
            config.preSharedKey = "\"" + Password + "\"";
            config.hiddenSSID = true;
            config.allowedAuthAlgorithms
                    .set(WifiConfiguration.AuthAlgorithm.SHARED);
            config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP);
            config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP);
            config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP40);
            config.allowedGroupCiphers
                    .set(WifiConfiguration.GroupCipher.WEP104);
            config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
            config.wepTxKeyIndex = 0;
        } else if (Type.equals("WPA")) {
            config.preSharedKey = "\"" + Password + "\"";
            config.hiddenSSID = true;
            config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP);
            config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
            config.allowedPairwiseCiphers
                    .set(WifiConfiguration.PairwiseCipher.TKIP);
            config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP);
            config.allowedPairwiseCiphers
                    .set(WifiConfiguration.PairwiseCipher.CCMP);
            config.allowedProtocols.set(WifiConfiguration.Protocol.RSN);// 对应wpa2加密方式
            config.allowedProtocols.set(WifiConfiguration.Protocol.WPA);// 对应wpa加密方式
            config.status = WifiConfiguration.Status.ENABLED;
        } else if (Type.equals("EAP")) {
            config.preSharedKey = "\"" + Password + "\"";
            config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP);
            config.allowedKeyManagement
                    .set(WifiConfiguration.KeyMgmt.IEEE8021X);// 20120723新增
        }
        return config;
    }
    public WifiConfiguration createWifiInfo(String SSID, String Password, int Type){
        WifiConfiguration config = new WifiConfiguration();
        config.allowedAuthAlgorithms.clear();
        config.allowedGroupCiphers.clear();
        config.allowedKeyManagement.clear();
        config.allowedPairwiseCiphers.clear();
        config.allowedProtocols.clear();
        config.SSID = "\"" + SSID + "\"";

        if(Type == 1) //WIFICIPHER_NOPASS
        {
            config.hiddenSSID = true;
            config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
        }

        if(Type == 2) //WIFICIPHER_WEP
        {
            config.hiddenSSID = true;
            config.wepKeys[0]= "\""+Password+"\"";
            config.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.SHARED);
            config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP);
            config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP);
            config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP40);
            config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP104);
            config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
            config.wepTxKeyIndex = 0;
        }
        if(Type == 3) //WIFICIPHER_WPA
        {
            config.preSharedKey = "\""+Password+"\"";
            config.hiddenSSID = true;
            config.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN);
            config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP);
            config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
            config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP);
            config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP);
            config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP);
            config.status = WifiConfiguration.Status.ENABLED;
        }
        return config;
    }
    public void addNetWork(WifiConfiguration configuration){

        //mWifiManager.saveConfiguration();
    }
    /**
     * 移除wifi,因为权限,无法移除的时候,需要手动去翻wifi列表删除
     * 注意:!!!只能移除自己应用创建的wifi。
     * 删除掉app,再安装的,都不算自己应用,具体看removeNetwork源码
     *
     */
    public boolean forgetWifi(String SSID){
        WifiConfiguration tempConfig = this.IsExsits(SSID);
        if (tempConfig != null) {
            Log.d("howard","tempConfig.networkId="+tempConfig.networkId);
            return  mWifiManager.removeNetwork(tempConfig.networkId);
            //mWifiManager.saveConfiguration();
        }
        return false;
    }

    private String intToIp(int paramInt) {
        return (paramInt & 0xFF) + "." + (0xFF & paramInt >> 8) + "." + (0xFF & paramInt >> 16) + "."
                + (0xFF & paramInt >> 24);
    }
    public boolean addNetWork(String SSID, String password, int Type)
    {
        int netId = -1;
    /*先执行删除wifi操作,1.如果删除的成功说明这个wifi配置是由本APP配置出来的;
                       2.这样可以避免密码错误之后,同名字的wifi配置存在,无法连接;
                       3.wifi直接连接成功过,不删除也能用, netId = getExitsWifiConfig(SSID).networkId;*/
        if (forgetWifi(SSID))
        {
            //移除成功,就新建一个
            netId = mWifiManager.addNetwork(createWifiInfo(SSID, password, Type));
        } else
        {
            //删除不成功,要么这个wifi配置以前就存在过,要么是还没连接过的
            if (getExitsWifiConfig(SSID) != null)
            {
                //这个wifi是连接过的,如果这个wifi在连接之后改了密码,那就只能手动去删除了
                netId = getExitsWifiConfig(SSID).networkId;
            } else {
                //没连接过的,新建一个wifi配置
                netId = mWifiManager.addNetwork(createWifiInfo(SSID, password, Type));
            }
        }

        //这个方法的第一个参数是需要连接wifi网络的networkId,第二个参数是指连接当前wifi网络是否需要断开其他网络
        //无论是否连接上,都返回true。。。。
        boolean enableNetwork = mWifiManager.enableNetwork(netId, true);
        return enableNetwork;
    }

    /**
     * 获取配置过的wifiConfiguration
     */
    public WifiConfiguration getExitsWifiConfig(String SSID)
    {
        List<WifiConfiguration> wifiConfigurationList = mWifiManager.getConfiguredNetworks();
        for (WifiConfiguration wifiConfiguration : wifiConfigurationList)
        {
            if (wifiConfiguration.SSID.equals("\"" + SSID + "\""))
            {
                return wifiConfiguration;
            }
        }
        return null;
    }

}

免费评分

参与人数 11吾爱币 +8 热心值 +10 收起 理由
TFF + 1 + 1 鼓励转贴优秀软件安全工具和文档!
wusongrong + 1 + 1 我很赞同!
Ruhv + 1 + 1 我很赞同!
LvX42824 + 1 我很赞同!
ack66 + 1 我很赞同!
lt520321999 + 1 谢谢@Thanks!
Xyangg8 + 1 我很赞同!
zhaozhao1 + 1 + 1 用心讨论,共获提升!
daolaji + 1 + 1 我很赞同!
小二班子 + 1 + 1 鼓励转贴优秀软件安全工具和文档!
Okimisax + 1 + 1 我很赞同!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

braxiong 发表于 2021-7-22 11:07
wubo777 发表于 2021-7-22 10:43
这个能强制连接那个wifi么?(不晓得wifi密码)

我银行卡没有钱可以强制银行给我钱吗,一天到晚问这种XX问题真是服了

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
xiaochengQT + 1 + 1 确实,老是做这种白日梦多多少少有点服。现在跑字典跑ping码都好使了高端一.

查看全部评分

jay026 发表于 2021-7-22 10:40
BOSS123 发表于 2021-7-22 10:19
雾都孤尔 发表于 2021-7-22 10:21
我是来学习的,请问具体功能是?
linzixiaocao 发表于 2021-7-22 10:21
受教了,学习下,感谢分享
jerseytt 发表于 2021-7-22 10:22
感谢分享
李佑辰 发表于 2021-7-22 10:34
我来学习一下嘿嘿。
zk1111 发表于 2021-7-22 10:35
表示没怎么看懂
头像被屏蔽
绝地飞鸿 发表于 2021-7-22 10:40
提示: 作者被禁止或删除 内容自动屏蔽
失控的蚊子 发表于 2021-7-22 10:41
能详细说一下怎么弄吗?两眼懵懵
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 11:46

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表