Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

After upgrade to android 2.3.5 and 2.3.6, the code for android HttpURLConnection class: urlconn.connect(), urlconn.getOutputStream() and urlconn.getInputStream() becomes very slow (each command takes more than 5 second, under version 2.3.2 or 2.2 it just take less than 1 sec). Does any one has the same situation?

My codes looks like this:

getUrl = new URL(url);
urlConn = (HttpURLConnection) getUrl.openConnection();

urlConn.setUseCaches(false);
urlConn.setRequestMethod(httpMethod.name());
urlConn.setConnectTimeout(HTTP_CONNECT_TIMEOUT);
urlConn.setReadTimeout(HTTP_READ_TIMEOUT);
urlConn.setDoInput(true);
if (requestBody != null)
       urlConn.setFixedLengthStreamingMode(requestBody.length());
if (!(httpMethod == HttpMethod.GET))
       urlConn.setDoOutput(true);

urlConn.connect();

if (requestBody != null) {
       osw = new OutputStreamWriter(urlConn.getOutputStream());
       osw.write(requestBody);
       osw.flush();
}

in = urlConn.getInputStream();
buffer = new ByteArrayOutputStream();
int nRead;
byte[] data = new byte[256];
while ((nRead = in.read(data, 0, data.length)) != -1) {
       buffer.write(data, 0, nRead);
}
buffer.flush();
responseBody = buffer.toByteArray();
responseCode = urlConn.getResponseCode();

Regards, Zheng

share|improve this question
1  
This is usually name resolution related, check your DNS settings and/or servers. – Nikolay Elenkov Oct 12 '12 at 7:04
I'm struggling with similar issue since past few days. Please let me know if you find the solution. Thanks ! – Infinity Oct 17 '12 at 5:41

1 Answer

Two bits of advice:

  1. Insert logging statements after each HTTP operation. That way you can see which step is taking the most time.
  2. Reading 256 bytes at a time from the InputStream is going to be rather inefficient. In my experience, an 8k buffer size (8192) works best on most devices and networks.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.