0

我有一个调用 servlet 的 jsp,它可以“即时”创建一个 pdf。

  public class HelloWorld extends Action
  {
     public static final String RESULT= "C:\hello.pdf";

     public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)
     {
        try {
           new HelloWorld().createPdf(RESULT);
        } catch (Exception e) {
           e.printStackTrace();
           return mapping.findForward("Failure");
        }
        return mapping.findForward("Success");
     }

     public void createPdf(String filename) throws IOException, DocumentException {
        Document document = new Document();
        PdfWriter.getInstance(document, new FileOutputStream(filename));
        document.open();
        PdfPTable table = createTable1();
        document.add(table);
        document.close();
     }

     public static PdfPTable createTable1() throws DocumentException {
        ...
     }
  }

我想要一个像“另存为”这样的消息框,而不是静态路径C:\hello.pdf

4

1 回答 1

1

您可以使用缓冲区输出流在内存中创建 pdf,而不是创建 FileOutputStream,然后您可以使用 jsp 将 pdf 作为二进制文件返回并让浏览器处理它(显示另存为窗口)。

您的 jsp 代码将类似于(假设您将有一个 byte[] 代表您的 PDF 文件):

response.setContentType("application/pdf");
response.addHeader("Content-Disposition", "inline; filename=\"filename.pdf\"");
response.setBufferSize(pdf.length);
response.setContentLength(pdf.length);
response.getOutputStream().write(pdf);

在您的回复中,请务必不要在这些说明之前写任何字符。

希望这会有所帮助,
问候

于 2013-06-06T15:17:41.307 回答