OutOfMemoryError
Android で大きなファイルを投稿すると、時々エラーが発生します。これは私が使用しているコードです。私は何か間違ったことをしていますか?
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("POST");
con.setDoInput(true);
con.setDoOutput(true);
ostream = new DataOutputStream(con.getOutputStream());
byte[] buffer = new byte[1536];
int count;
while ((count = fileInput.read(buffer)) != -1) {
ostream.write(buffer, 0, count); // This sometimes causes OutOfMemoryError
}
ostream.flush();
ostream.flush()
ループ内での呼び出しはwhile
役に立ちますか?