如何使用 JasperReports 自动生成报告
我正在使用 NetBeans,并且希望使用 JasperReports“自动生成”报告。
事情是这样的:我想创建一个表单,要求提供日期范围,以便执行 sql 查询并提供该信息;然后对其进行格式化并生成 PDF 报告。
我看到 JasperReports 使用编译为 .jasper 的 jrxml 文件来生成报告。我想知道 jrxml 是否可以由 API 的某些代码自动生成,或者需要“以编程方式”编辑 jrxml 文件以自动生成报告。
谢谢, 小工具00
I'm working on NetBeans, and want to 'auto-generate' a report with JasperReports.
Here is the deal: I want to create a form that asks for a date frame in order to do a sql query and bring that information; then format it and generate a PDF report out of it.
I see that JasperReports uses the jrxml files compiled to .jasper in order to generate the reports. I want to know if that jrxml could be auto-generated by some code of the API, or it would be needed to edit the jrxml file 'programatically' to auto-generate the report.
Thanks,
gadget00
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看DynamicJasper。它允许您以编程方式创建报告,而无需 jrxml 文件。
Take a look at DynamicJasper. It allows you to programmatically create reports without a jrxml file.
试试这个:
效果很好。
try this :
it works perfectly.