猿问

使用Spring MVC返回生成的pdf

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


千万里不及你
浏览 592回答 1
1回答
随时随地看视频慕课网APP

相关分类

Java
我要回答