java – Spring OutputStream – 用IE下载pptx

前端之家收集整理的这篇文章主要介绍了java – Spring OutputStream – 用IE下载pptx前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我使用此Java代码从Web应用程序下载文件

 @RequestMapping(value = "/filedownloads/filedownload/{userid}/{projectid}/{documentfileid}/{version}/",method = RequestMethod.GET)
 public void filesDownload(final @PathVariable("userid") String userId,final @PathVariable("projectid") String projectId,final @PathVariable("documentfileid") String documentFileId,final @PathVariable("version") String version,final HttpServletResponse response) throws IOException,BusinessException {

    ...

    final String fileName = "filename=" + documentFile.getFileName();
    final InputStream is = new FileInputStream(filePath);
    response.setHeader("Content-Disposition","inline; " + fileName);
    IoUtils.copy(is,response.getOutputStream());
    response.flushBuffer();
}

如果我要下载一个pptx文件,我会得到以下IE页面

opend pptx in IE

我想要做的是在Powerpoint中打开下载的文件.
我现在的问题是,如果有一个标题设置,以便使用正确的应用程序打开此文件(在本例中为Powerpoint)

最佳答案
只需尝试正确设置Content Type标头,如果是pptx,则为application / vnd.openxmlformats-officedocument.presentationml.presentation,如下所示:

response.setContentType(
    "application/vnd.openxmlformats-officedocument.presentationml.presentation"
);
response.setHeader(
    "Content-Disposition",String.format("inline; filename=\"%s\"",documentFile.getFileName())
);
response.setContentLength((int) new File(filePath).length());

Here is the list of mime types corresponding to Office 2007 documents.

原文链接:https://www.f2er.com/spring/437344.html

猜你在找的Spring相关文章