您好我已经知道我们可以从 jasper 导出 XML 格式的数据。但它也返回了我不想要的 jasper 标签。我只需要普通的 xml 表单。可能吗 ?如果是,那怎么办?
我正在通过以下语句生成 xml 格式:
jrExporter = new JRXmlExporter();
jrExporter.setParameter(JRXmlExporterParameter.IS_EMBEDDING_IMAGES, Boolean.FALSE);
response.setContentType("application/xml");
jrExporter.setParameter(JRXmlExporterParameter.JASPER_PRINT, jasperPrint);
jrExporter.setParameter(JRXmlExporterParameter.OUTPUT_STREAM, response.getOutputStream());
jrExporter.exportReport();
希望导出前需要设置一些属性,但不知道是哪个。