サーバーからJSON形式でデータをダウンロードすることを含むアプリを作成しています。同じことを達成するために HTTP Post を使用しています。ダウンロードする JSON ファイルのサイズは約 2 ~ 3 KB です。これらすべての操作を別のスレッドで実行しています。
ただし、アプリのパフォーマンスは非常に予測できません。デバッグを試みたところ、HttpPost オブジェクトを作成している行でアプリが動かなくなることがあり、その行を実行するのに 1 ~ 2 秒しかかからないことがあります。何が問題になる可能性がありますか? アプリが大量のメモリを消費している可能性がありますか? もう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;
}
}