2011-11-25 3 views
2

私は、自動で定期的にWi-Fiを有効にし、ネットワークをスキャンし、開いているネットワークをフィルタリングし、wifiConfigurationオブジェクトを作成し、そのネットワークに接続するアプリケーションを開発しています。開いているWi-Fi APをプログラムでスキャンして見つけて、接続するにはどうすればいいですか?

私はアンドロイド開発者のwifiConfiguration APIを読んでいます。そして、それに基づいて、私は、ネットワークのためのスキャンを無線LANを有効にし、コードのサンプルを書かれているし、そのように見えるリストに結果を保存します。

11-25 16:05:44.191: I/WIFISCAN(12955): List of networks: [SSID: airlive_w, BSSID: 00:4f:62:2c:96:18, capabilities: [WPA-PSK-CCMP][WPA2-PSK-CCMP][WPS], level: -71, frequency: 2432, SSID: Mikynet, BSSID: 00:1e:2a:ed:62:4e, capabilities: [WPA2-PSK-CCMP], level: -72, frequency: 2427, SSID: TP-LINK_Vectra, BSSID: 74:ea:3a:ab:eb:b0, capabilities: [WPA2-PSK-TKIP+CCMP][WPS], level: -73, frequency: 2462, SSID: Nasza Siec- ryby, BSSID: d8:5d:4c:df:60:74, capabilities: [WPA2-PSK-TKIP+CCMP-preauth], level: -88, frequency: 2437, SSID: lanzarote, BSSID: 00:27:19:f7:05:9c, capabilities: [WPA-PSK-TKIP+CCMP][WPA2-PSK-TKIP+CCMP-preauth], level: -89, frequency: 2437, SSID: Alicja, BSSID: 94:44:52:a7:17:02, capabilities: [WPA-PSK-CCMP][WPA2-PSK-CCMP][WPS], level: -89, frequency: 2442, SSID: orangebox, BSSID: 00:1f:f3:f8:ea:0f, capabilities: [WPA2-PSK-CCMP], level: -89, frequency: 2462] 

は、どのように私はどの知っているつもりですその結果を持ってそれらのうちの何者かが開いています(無料)。 オープンなものにwifiConfigurationを作成するにはどうすればよいですか?ここで

は、WPA-PSK用のサンプルwifiConfigurationです:

WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE); 
WifiConfiguration wc = new WifiConfiguration(); 
// This is must be quoted according to the documentation 
// http://developer.android.com/reference/android/net/wifi/WifiConfiguration.html#SSID 
wc.SSID = "\"SSIDName\""; 
wc.preSharedKey = "\"password\""; 
wc.hiddenSSID = true; 
wc.status = WifiConfiguration.Status.ENABLED;   
wc.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP); 
wc.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP); 
wc.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); 
wc.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); 
wc.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); 
wc.allowedProtocols.set(WifiConfiguration.Protocol.RSN); 
int res = wifi.addNetwork(wc); 
Log.d("WifiPreference", "add Network returned " + res); 
boolean b = wifi.enableNetwork(res, true);   
Log.d("WifiPreference", "enableNetwork returned " + b); 

任意の指導は非常にapreciatedされます! :)

答えて

2

私が知る限り、Wifiサービスにオープン設定を追加する必要があります。オープンネットワークを追加できない場合は、おそらく何らかの認証プロトコルが必要です。

WifiConfiguration wc = new WifiConfiguration(); 
wc.SSID = "some ssid from the list"; 
wc.status = WifiConfiguration.Status.ENABLED; 
wc.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN); 

WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE); 
int networkId = wifi.addNetwork(wc); 
if (networkId == -1) { 
    // probably not open 
} else { 
    // likely open 
} 

また、近くのネットワークがa)は、以前に接続されており、およびb)開いているかどうかを確認するためにgetConfiguredNetworks方法と併せて、これを使用することができます。

+0

私のこの例では、公開されているパスワードとパスワードのついたネットワークに対して「可能性が高い」と表示されます。 – garmax1

関連する問題