我正在制作一个应用程序,其中涉及以 JSON 格式从我的服务器下载数据。我正在使用 HTTP Post 来实现相同的目的。我正在下载的 JSON 文件大小约为 2-3 Kb。我在不同的线程上执行所有这些操作。
但是,我的应用程序的性能非常难以预测。我尝试调试它,发现有时我的应用程序卡在我创建 HttpPost 对象的行,有时执行该行几乎不需要 1-2 秒。可能是什么问题?可能是因为我的应用程序占用了大量内存吗?还有一件事,我的应用程序在我强制关闭后第二次运行良好。谢谢 !
public String getJSONString(String url) {
try {
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null)
{sb.append(line + "n");}
is.close();
json = sb.toString();
} catch (Exception e) {
Log.e("Buffer Error", "Error converting result " + e.toString());
}
return json;
}
}