使用Spring MVC返回生成的pdf


71

我正在使用Spring MVC。我必须编写一个服务,该服务将从请求主体中获取输入,将数据添加到pdf中,然后将pdf文件返回到浏览器。pdf文档是使用itextpdf生成的。如何使用Spring MVC做到这一点。我试过使用这个

@RequestMapping(value="/getpdf", method=RequestMethod.POST)
public Document getPDF(HttpServletRequest request , HttpServletResponse response, 
      @RequestBody String json) throws Exception {
    response.setContentType("application/pdf");
    response.setHeader("Content-Disposition", "attachment:filename=report.pdf");
    OutputStream out = response.getOutputStream();
    Document doc = PdfUtil.showHelp(emp);
    return doc;
}

生成pdf的showhelp函数。我只是暂时将一些随机数据放入pdf中。

public static Document showHelp(Employee emp) throws Exception {
    Document document = new Document();

    PdfWriter.getInstance(document, new FileOutputStream("C:/tmp/report.pdf"));
    document.open();
    document.add(new Paragraph("table"));
    document.add(new Paragraph(new Date().toString()));
    PdfPTable table=new PdfPTable(2);

    PdfPCell cell = new PdfPCell (new Paragraph ("table"));

    cell.setColspan (2);
    cell.setHorizontalAlignment (Element.ALIGN_CENTER);
    cell.setPadding (10.0f);
    cell.setBackgroundColor (new BaseColor (140, 221, 8));                                  

    table.addCell(cell);                                    
    ArrayList<String[]> row=new ArrayList<String[]>();
    String[] data=new String[2];
    data[0]="1";
    data[1]="2";
    String[] data1=new String[2];
    data1[0]="3";
    data1[1]="4";
    row.add(data);
    row.add(data1);

    for(int i=0;i<row.size();i++) {
      String[] cols=row.get(i);
      for(int j=0;j<cols.length;j++){
        table.addCell(cols[j]);
      }
    }

    document.add(table);
    document.close();

    return document;   
}

我确定这是错误的。我希望生成pdf并通过浏览器打开“保存/打开”对话框,以便可以将其存储在客户端的文件系统中。请帮帮我。

Answers:


128

您使用的方向正确response.getOutputStream(),但是您并未在代码的任何地方使用其输出。本质上,您需要做的是将PDF文件的字节直接传输到输出流并刷新响应。在Spring中,您可以这样操作:

@RequestMapping(value="/getpdf", method=RequestMethod.POST)
public ResponseEntity<byte[]> getPDF(@RequestBody String json) {
    // convert JSON to Employee 
    Employee emp = convertSomehow(json);

    // generate the file
    PdfUtil.showHelp(emp);

    // retrieve contents of "C:/tmp/report.pdf" that were written in showHelp
    byte[] contents = (...);

    HttpHeaders headers = new HttpHeaders();
    headers.setContentType(MediaType.APPLICATION_PDF);
    // Here you have to set the actual filename of your pdf
    String filename = "output.pdf";
    headers.setContentDispositionFormData(filename, filename);
    headers.setCacheControl("must-revalidate, post-check=0, pre-check=0");
    ResponseEntity<byte[]> response = new ResponseEntity<>(contents, headers, HttpStatus.OK);
    return response;
}

笔记:

  • 为您的方法使用有意义的名称:命名写PDF文档的showHelp方法不是一个好主意
  • 读入文件到一个byte[]:例如这里
  • 我建议在其中的临时PDF文件名中添加一个随机字符串,showHelp()以避免在两个用户同时发送请求的情况下覆盖文件

那帮助了我。非常感谢!!!我还有一个。在这里,我将生成的pdf存储到我的文件系统中,然后读取并将其转换为字节。如果我必须在旅途中转换生成的pdf怎么办。在此先感谢
Maheshwaran K

7
可以FileOutputStream在中使用而不是在您中PdfWriter.getInstance()使用ByteArrayOutputStream
kryger

@kryger,您知道如何在浏览器窗口中打开PDF文件吗?我使用了您的方法,并提示用户立即保存文件:)

为什么要在文件系统上存储文件?
cherouvim 2014年

2
由于Spring 4.3MediaType.APPLICATION_PDF可用作静态变量。
Przemek Nowak '18
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.