在jasper报告中,在生成pdf时,它会在填充页面后生成空白页。每次打印时,空页数都会增加。
答案 0 :(得分:0)
如果您正在使用这种方法:
JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, parameters);
然后您必须执行以下操作:
JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, parameters, new JREmptyDataSource());
您必须提供一个JREmptyDataSource。