How do I program android to look for a particular network?

后端 未结 1 2023
旧时难觅i
旧时难觅i 2021-01-28 18:33

My application only works if it\'s on the campus network in order to access campus data. When running the application on public wifi or 3g network, the application will hang the

相关标签:
1条回答
  • 2021-01-28 18:41

    From what you are saying i think you want to enforce application to use only Campus wifi.

    So here you go

    Create WifiConfiguration instance:

    String networkSSID = "put network SSID here";
    String networkPass = "put network password here";
    
    WifiConfiguration conf = new WifiConfiguration();
    conf.SSID = "\"" + networkSSID + "\"";   //ssid must be in quotes
    

    Then, for WEP network you need to do this:

    conf.wepKeys[0] = "\"" + networkPass + "\""; 
    conf.wepTxKeyIndex = 0;
    conf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
    conf.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP40); 
    

    For WPA network you need to add passphrase like this:

    conf.preSharedKey = "\""+ networkPass +"\"";
    

    For Open network you need to do this:

    conf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
    

    Then, you need to add it to Android wifi manager settings:

    WifiManager wifiManager = (WifiManager)context.getSystemService(Context.WIFI_SERVICE); 
    wifiManager.add(conf);
    

    And finally, you might need to enable it, so Android conntects to it:

    List<WifiConfiguration> list = wifiManager.getConfiguredNetworks();
    for( WifiConfiguration i : list ) {
        if(i.SSID != null && i.SSID.equals("\"" + networkSSID + "\"")) {
             wm.disconnect();
             wm.enableNetwork(i.networkId, true);
             wm.reconnect();                
    
             break;
        }           
     }
    

    Note that In case of WEP, if your password is in hex, you do not need to surround it with quotes.

    0 讨论(0)
提交回复
热议问题