使用 jasperReport 生成不包含可用数据的报告
我正在使用 JasperReport 和 ireport 4.0
当请求不返回数据时,我想生成一个包含“此请求没有可用数据”一词的报告。
我怎样才能做到这一点?
比你
I'am using JasperReport and ireport 4.0
I want to generate a report contain the word "no available data for this request" When the request do not return data.
How can I do that?
than you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Rym,您可以将“无数据时”模板属性设置为“无数据部分”值(在 IReport 中)。然后添加静态文本(到这个新区域),其中包含“此请求没有可用数据”文本,例如
Rym, you can set "When No Data" template property to "No Data Section" value (in IReport). And then add Static Text (to this new band) with "no available data for this request" text, for example
您可以按照 Alex K 所说的那样,或者更好地在生成报告之前检查是否有任何数据需要处理,然后您可以生成另一个简单的报告,说“没有可用数据......”,我想您可以节省很多计算资源就这样。
You can do as Alex K said, or better check if you have any data to process before generating the report, then you can generate another simple report saying "no available data ...", I guess you can save much on computing resources doing it this way.