我製作了一個接受xml數據的應用程序,但是當我發送此資源的查詢時,看起來沒有連接。我添加了Android互聯網權限,並在瀏覽器中有網絡,但在我的應用程序中沒有任何連接。適用於Android 2.2但不適用於Android 2.3
這是代碼
protected String sendRequest(String urlAdr,ArrayList postVars){ String data=extractPairValuesToString(postVars); urlAdr+=data; //send all variables in the url not from request properties String xmlResponse=null; HttpURLConnection con = null; URL url; try { url = new URL(urlAdr); con = (HttpURLConnection) url.openConnection(); //con.setReadTimeout(10000 /* milliseconds */); //con.setConnectTimeout(15000 /* milliseconds */); con.setRequestMethod("POST"); con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); con.setRequestProperty("Connection", "Keep-Alive"); con.setRequestProperty("Content-Length", ""+Integer.toString(data.getBytes().length)); con.setDoInput(true); con.setDoOutput(true); }catch (IOException e) { setErrorStatus(e.getMessage()); } }
你得到任何異常(除IOException異常,甚至IOException異常)? –
不,任何異常都沒有提交 – user1106234