如何在Jasper的运行时设置导出pdf版本?
最佳答案
在JRPdfExporter
实例上,调用方法setParameter
并使用在JRPdfExporterParameter
中定义的常量来适当地设置版本。
例:exporter.setParameter(JRPdfExporterParameter.PDF_VERSION, JRPdfExporterParameter.PDF_VERSION_1_2);
版本1.2到1.7有常量。
对于您的代码,解决方案将如下所示:
JasperPrint print = JasperFillManager.fillReport(jasperReport, param, con);
File outputFile = new File("[Your destination filename goes here]");
JRPdfExporter exporter = new JRPdfExporter();
exporter.setParameter(JRExporterParameter.JASPER_PRINT, print);
exporter.setParameter(JRExporterParameter.OUTPUT_FILE, outputFile);
exporter.setParameter(JRPdfExporterParameter.PDF_VERSION, JRPdfExporterParameter.PDF_VERSION_1_2);
exporter.exportReport();
然后将pdf写入
outputFile
,因此您无需调用printReport
。