0
在我的應用我與Web連接,它沒有顯示任何錯誤,但是當我在手機安裝的應用程序它顯示了IO異常關鍵的呼叫:關鍵的隧道失敗。爲什麼會出現此錯誤。請幫助我。Crical呼叫IO異常:黑色漿果的關鍵隧道故障問題
謝謝
在我的應用我與Web連接,它沒有顯示任何錯誤,但是當我在手機安裝的應用程序它顯示了IO異常關鍵的呼叫:關鍵的隧道失敗。爲什麼會出現此錯誤。請幫助我。Crical呼叫IO異常:黑色漿果的關鍵隧道故障問題
謝謝
按照鏈接可以解決你的問題:HTTP://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is_-_Different_ways_to_make_an_HTTP_or_socket_connection.html? NODEID = 826935 & vernum = 0
並且還可以使用以下示例代碼:
私有靜態字符串getConnectionString(){ 字符串的connectionString = 「」; 如果(WLANInfo.getWLANState()== WLANInfo.WLAN_STATE_CONNECTED){ 的connectionString = 「;接口= WiFi」 的; }
else if((CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_MDS) == CoverageInfo.COVERAGE_MDS){
connectionString = ";deviceside=false";
}
else if((CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_DIRECT)==CoverageInfo.COVERAGE_DIRECT){
String carrierUid=getCarrierBIBSUid();
if(carrierUid == null) {
connectionString = ";deviceside=true";
}
else{
connectionString = ";deviceside=false;connectionUID="+carrierUid + ";ConnectionType=mds-public";
}
}
else if(CoverageInfo.getCoverageStatus() == CoverageInfo.COVERAGE_NONE)
{
}
return connectionString;
}