我的资源目录中有 .apk 文件,我想直接从移动设备下载它。
使用 Chrome 时一切都很好,或者当我在我的电脑上尝试它时,但是当使用默认的 Android 浏览器时,我得到一个 .htm 文件和一个:
ClientAbortException:java.io.IOException:写入失败
我不明白发生了什么,或者它是否是浏览器的错误。
一些循环后抛出异常:
out.write(outputByte, 0, 4096);
有什么建议么?谢谢!
这是我的代码:
@RequestMapping(method = RequestMethod.POST)
public String download(@ModelAttribute("apkDownload") @Valid ApkDownloadDTO apkDownload, ModelMap model, HttpServletRequest request,
HttpServletResponse response, BindingResult result) {
InputStream is = ApkDownloadController.class.getResourceAsStream("/apk/mine.apk");
try {
response.addHeader("Content-Description", "File Transfer");
response.addHeader("Content-Type", " application/vnd.android.package-archive");
response.addHeader("Content-Disposition", "attachment; filename=mine.apk");
response.addHeader("Content-Transfer-Encoding", "binary");
ServletOutputStream out = response.getOutputStream();
byte[] outputByte = new byte[4096];
while (is.read(outputByte, 0, 4096) != -1) {
out.write(outputByte, 0, 4096);
}
is.close();
out.flush();
out.close();
} catch (IOException e) {
log.error(e);
} finally {
try {
is.close();
} catch (IOException e) {
log.error(e);
}
}
return null;
}