我已经使用意向服务来下载一组视频文件,但在下载一些大尺寸视频时,这部分内容会出现内存错误“byte [] responseBody = client.execute(getMethod,responseHandler);”,I know byte array超过了app的分配堆大小。
我正在寻找一些解决此问题的替代解决方案,如果你有一些好的解决方案,请建议我。
@Override
public void onHandleIntent(Intent i) {
Log.d("gl", "onhandleintent");
HttpGet getMethod = new HttpGet(i.getData().toString());
int result = Activity.RESULT_CANCELED;
ad_id =i.getStringExtra("ad_id");
try {
ResponseHandler<byte[]> responseHandler = new ByteArrayResponseHandler();
byte[] responseBody = client.execute(getMethod, responseHandler);
Log.d("gl", "file name " + i.getData().getLastPathSegment());
File output = new File(SharedPreferenceClass.readName(
Downloader.this, "videoFolder", "itaxi-videos"), i
.getData().getLastPathSegment());
if (output.exists()) {
output.delete();
}
FileOutputStream fos = new FileOutputStream(output.getPath());
fos.write(responseBody);
fos.close();
result = Activity.RESULT_OK;
} catch (IOException e2) {
Log.e(getClass().getName(), "Exception in download", e2);
result = Activity.RESULT_CANCELED;
}
Bundle extras = i.getExtras();
// sending back datas to the handle for further updations like db
if (extras != null) {
Messenger messenger = (Messenger) extras.get(EXTRA_MESSENGER);
Message msg = Message.obtain();
msg.arg1 = result;
try {
Bundle bundle = new Bundle();
bundle.putString("ad_id", ad_id);
msg.setData(bundle);
messenger.send(msg);
} catch (android.os.RemoteException e1) {
Log.w(getClass().getName(), "Exception sending message", e1);
}
}
}
提前致谢
答案 0 :(得分:1)
问题在于:您正在使用ResponseHandler
,它只是将整个HTTP响应读入内存中的字节数组。你没有那么多记忆。
您需要获取基础InputStream
并循环,从流中读取合理数量的数据,然后写入输出文件。
InputStream
位于您从HttpEntity
HttpResponse
内
你可以:
A)编写一个自定义ResponseHandler
,其构造函数通过File
并完成所有工作。
或
B)只需致电client.execute(getMethod)
。这将直接返回HttpResponse
。