Jasper支持xml文件作为数据源吗?

发布于 2025-01-03 13:42:46 字数 90 浏览 0 评论 0原文

我想知道 JasperServer 是否接受 xml 文件作为报告数据源,以及我们是否可以在 xml 节点上执行与即席报告创建器中的各种数据源相同的操作,例如拖放等?

I want to know do JasperServer accepts xml file as the report data source and whether we can perform same operation on xml nodes that we perform on the various data-source in adhoc report creator like dragging dropping etc.?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫性小仙女 2025-01-10 13:42:46

是的,jasper 确实支持基于 XML 的数据源,您可以像使用任何其他数据源创建报告一样创建报告。 Jasper 对您提供的数据源进行了抽象,以确保它对于不同的数据源表现相同(或至少相似)。

看这里此处了解一些其他信息信息

yes, jasper does support XML based datasources, you can create your report just the way you would create it using any other datasource. Jasper has an abstraction from datasources which you provide to ensure it behaves the same (or atleast similarly) with different datasources.

look here and here for some additional info

桜花祭 2025-01-10 13:42:46

以下是我测试的 xml 文件作为数据源的示例代码,输出的是 PDF 报告:

    JasperReport jasperReport = JasperCompileManager.compileReport("<Path of jrxml file>");
    JRXmlDataSource xmlDataSource = new JRXmlDataSource("<Path of xml file>", "XPath Query");
    JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, new HashMap(), xmlDataSource);
    JasperExportManager.exportReportToPdfFile(jasperPrint, "<Path of file PDF output file>");

Here is the sample Code I tested for xml file as data source and out is PDF report:

    JasperReport jasperReport = JasperCompileManager.compileReport("<Path of jrxml file>");
    JRXmlDataSource xmlDataSource = new JRXmlDataSource("<Path of xml file>", "XPath Query");
    JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, new HashMap(), xmlDataSource);
    JasperExportManager.exportReportToPdfFile(jasperPrint, "<Path of file PDF output file>");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文