0

在我的 Java EE 应用程序中,我正在通过我的 Action 生成 PDF,如下所示:

 response.setContentType("application/pdf");
 Document document = new Document();                
 PdfWriter.getInstance(document, response.getOutputStream()); 
 processManagerHelper.exportingSystemStatisticsPage(document, foProcess);

然后我的函数“exportingSystemStatisticsPage”打开文档,用 iText 和 JFreeChart 填充它,然后关闭文档。这很好用。

我现在想做的是用不同的参数多次调用我的函数“exportingSystemStatistics”,然后连接该函数创建的 PDF 以仅生成一个 PDF。“exportingSystemStatisticsPage”正在创建一页 PDF。

你知道我该怎么做吗?任何帮助将非常感激。

4

1 回答 1

0

如果您将在“exportingSystemStatistics”中添加到 PDF 的所有内容添加到ChapterAutoNumber,您可以轻松地连接这些章节......

于 2012-07-12T10:38:32.030 回答