我已經開發了周圍的掃描我的設備現有的WiFi信號,並顯示他們的名字和他們的實力以及如下應用:如何將一個掃描列表分配給一個變量?
tv = (TextView) findViewById (R.id.textView1);
List <ScanResult> results = wm.getScanResults();
String otherwifi="The existing network is:\n\n";
System.out.println(result.SSID.toString());
System.out.println(result.level);
for (ScanResult result: results) {
otherwifi+=result.SSID+":"+result.level+"\n";
tv.setText (otherwifi);
}
,這是的System.out.println:
>05-11 10:08:30.860: I/System.out(27621): rubelwifii
>05-11 10:08:30.860: I/System.out(27621): -50
>05-11 10:08:30.860: I/System.out(27621): aliwifi
>05-11 10:08:30.860: I/System.out(27621): -92
>05-11 10:08:30.860: I/System.out(27621): ABDULHAKEEM
>05-11 10:08:30.860: I/System.out(27621): -55
>05-11 10:08:30.860: I/System.out(27621): shamwifi
>05-11 10:08:30.860: I/System.out(27621): -70
>05-11 10:08:30.860: I/System.out(27621): Fuselage
>05-11 10:08:30.860: I/System.out(27621): -84
現在我想預定義它們中的每一個作爲變量來使用它們進行進一步處理?
你是問如何將結果存儲在一個變量列表? –
我問如何給他們一個定義的名稱在Eclipse例如 名1 = rubelwifii strength1 = -50 名稱2 = ABDULHAKEEM 強度2 = -55 等 希望你明白我的意思,並幫我一下吧 – user3610902