使用spring MVC返回生成的pdf

我正在使用Spring MVC。我必须编写一个服务,从请求主体获取input,将数据添加到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并通过浏览器打开保存/打开对话框,以便它可以存储在客户端的文件系统中。 请帮我一下

你已经在response.getOutputStream()的正确轨道上,但是你没有在代码中的任何地方使用它的输出。 基本上你需要做的是将PDF文件的字节直接stream到输出stream并刷新响应。 在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.parseMediaType("application/pdf")); String filename = "output.pdf"; headers.setContentDispositionFormData(filename, filename); headers.setCacheControl("must-revalidate, post-check=0, pre-check=0"); ResponseEntity<byte[]> response = new ResponseEntity<byte[]>(contents, headers, HttpStatus.OK); return response; } 

笔记:

  • 为你的方法使用有意义的名字:命名一个写PDF文档的方法showHelp 不是一个好主意
  • 读取一个文件到一个byte[] :例子在这里
  • 我build议在showHelp()添加一个随机string到临时PDF文件名,以避免覆盖文件,如果两个用户在同一时间发送请求