使用 Spring MVC 返回生成的 pdf

问题描述 投票:0回答:2

我正在使用 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并通过浏览器打开保存/打开对话框,以便可以将其存储在客户端的文件系统中。请帮帮我。

java spring spring-mvc itext response
2个回答
157
投票

您使用

response.getOutputStream()
的方法是正确的,但您没有在代码中的任何地方使用它的输出。本质上,您需要做的是将 PDF 文件的字节直接流式传输到输出流并刷新响应。在春天你可以这样做:

@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[]
    :示例这里
  • 我建议在
    showHelp()
    内的临时PDF文件名中添加一个随机字符串,以避免两个用户同时发送请求时覆盖文件

0
投票

一般情况下,你不想使用

ResponseEntity<byte[]>
,除非你确定二进制数据非常小。 通常您会想要使用
ResponseEntity<InputStreamResource>

@GetMapping("/file")
public ResponseEntity<InputStreamResource> getFile(){
  // figure out what filePath is. filePath=...
  try (FileInputStream fileInputStream = new FileInputStream(filePath)){
    InputStreamResource inputStreamResource = new InputStreamResource(fileInputStream);
    HttpHeaders headers = new HttpHeaders();
    headers.setContentLength(Files.size(Paths.get(filePath)));//optional
    headers.setContentDisposition("attachment", "somefile.pdf"); //optional
    headers.setContentType("application/pdf"); //optional
    return new ResponseEntity(inputStreamResource, headers, HttpStatus.OK);
}
© www.soinside.com 2019 - 2024. All rights reserved.