从服务器文件系统中的文件加载pdf in-browser?

时间:2015-09-08 22:08:49

标签: spring spring-mvc pdf

如何在服务器目录结构的文件中找到pdf,以便在浏览器中为 Spring MVC 应用程序的用户加载?

我已经搜索了这个并发现了有关如何生成PDF的帖子,但他们的答案在这种情况下无效。例如,this other posting不相关,因为我的代码中的res.setContentType("application/pdf");无法解决问题。此外,this other posting描述了如何从数据库执行此操作,但未显示完整的工作控制器代码。其他帖子也有类似的问题导致他们在这种情况下无法工作。

我需要简单地提供一个文件(不是来自数据库),并且用户可以在浏览器中查看它。我提出的最好的是下面的代码,它要求用户下载PDF或在浏览器外的单独应用程序中查看它。 我可以对下面的特定代码进行哪些具体更改,以便用户在点击链接时自动在浏览器中看到PDF内容,而不是提示下载?

@RequestMapping(value = "/test-pdf")
public void generatePdf(HttpServletRequest req,HttpServletResponse res){
    res.setContentType("application/pdf");
    res.setHeader("Content-Disposition", "attachment;filename=report.pdf");
    ServletOutputStream outStream=null;
    try {
        BufferedInputStream bis = new BufferedInputStream(
                new FileInputStream(new File("/path/to", "nameOfThe.pdf")));
            /*ServletOutputStream*/ outStream = res.getOutputStream();
            //to make it easier to change to 8 or 16 KBs
            int FILE_CHUNK_SIZE = 1024 * 4;
            byte[] chunk = new byte[FILE_CHUNK_SIZE];
            int bytesRead = 0;
            while ((bytesRead = bis.read(chunk)) != -1) {outStream.write(chunk, 0, bytesRead);}
            bis.close();
            outStream.flush();
            outStream.close();
    } 
    catch (Exception e) {e.printStackTrace();}
}

1 个答案:

答案 0 :(得分:5)

更改

res.setHeader("Content-Disposition", "attachment;filename=report.pdf");

res.setHeader("Content-Disposition", "inline;filename=report.pdf");

您还应该设置内容长度

FileCopyUtils非常方便:

@Controller
public class FileController {

    @RequestMapping("/report")
    void getFile(HttpServletResponse response) throws IOException {

        String fileName = "report.pdf";
        String path = "/path/to/" + fileName;

        File file = new File(path);
        FileInputStream inputStream = new FileInputStream(file);

        response.setContentType("application/pdf");
        response.setContentLength((int) file.length());
        response.setHeader("Content-Disposition", "inline;filename=\"" + fileName + "\"");

        FileCopyUtils.copy(inputStream, response.getOutputStream());

    }
}