1
所以,這是一個奇怪的問題。我有一個使用權限INTERNET的應用程序,但無法在任何T-Mobile設備上訪問Internet。如果設備在WiFi上,則應用程序按預期工作。該應用程序還經過了AT & T和Sprint設備的測試,並可按照預期使用或不使用WiFi連接。Android&T-Mobile互聯網連接問題
以下是我用來與Google連接的代碼示例。響應返回爲200並正常,但應用程序在最後包含的行上引發Exception,因爲內容長度爲-1。電話上的所有其他互聯網應用程序按預期工作,即能夠連接到互聯網。我嘗試在我的應用程序中拋出每個可用的標準許可,並且沒有運氣。任何人之前看過或有任何想法?謝謝。
HttpClient httpClient = new DefaultHttpClient();
HttpContext localContext = new BasicHttpContext();
HttpGet httpGet = new HttpGet("http://www.google.com");
HttpResponse response = httpClient.execute(httpGet, localContext);
if(response.getStatusLine().getStatusCode() == 200) {
HttpEntity qrEntity = response.getEntity();
byte [] buffer = new byte[(int) qrEntity.getContentLength()];