在我的Java EE应用程序中,我通过我的Action生成PDF,如下所示:
response.setContentType("application/pdf");
Document document = new Document();
PdfWriter.getInstance(document, response.getOutputStream());
processManagerHelper.exportingSystemStatisticsPage(document, foProcess);
我的函数“exportsSystemStatisticsPage”然后打开文档,用iText和JFreeChart填充它,然后关闭文档。 这很有效。
我现在要做的是用不同的参数多次调用我的函数“exportsSystemStatistics”,并连接函数创建的PDF,只制作一个PDF。 “exportsSystemStatisticsPage”正在创建一页PDF。
你知道我该怎么做吗? 任何帮助将不胜感激。
答案 0 :(得分:0)
如果要将“exportsSystemStatistics”中添加到PDF的所有内容添加到ChapterAutoNumber,您可以轻松地连接这些章节......