0

我的资源目录中有 .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;

}
4

1 回答 1

0

尝试使用默认浏览器以外的其他浏览器,例如 UC 浏览器、Chrome 等,然后您将了解其默认浏览器是否存在问题

于 2013-10-22T12:24:04.590 回答