从 Spring 控制器下载文件
许多应用程序需要从网站下载文件。在某些情况下,这些文件是使用 Freemarker 等框架和 iText 等 PDF 生成库动态生成的。然而,这就提出了如何允许用户通过 Spring Controller 下载文件的问题。
解决方案涉及使用 HttpServletResponse 对象将文件写入输出流。这可以通过以下代码来实现:
@RequestMapping(value = "/files/{file_name}", method = RequestMethod.GET) public void getFile( @PathVariable("file_name") String fileName, HttpServletResponse response) { try { // get your file as InputStream InputStream is = ...; // copy it to response's OutputStream org.apache.commons.io.IOUtils.copy(is, response.getOutputStream()); response.flushBuffer(); } catch (IOException ex) { log.info("Error writing file to output stream. Filename was '{}'", fileName, ex); throw new RuntimeException("IOError writing file to output stream"); } }
一旦输出流可访问,它就可以用作 PDF 生成器生成的 PDF 的目标。此外,通过将 Content-Type 设置为“application/pdf”,可以为浏览器指定正确的文件类型。
以上是如何下载使用Spring控制器动态生成的文件?的详细内容。更多信息请关注PHP中文网其他相关文章!