如何在JasperReports中验证空报告?

如何在JasperReports中验证空报告?,第1张

如何在JasperReports中验证空报告?

jasperReport
标签上设置
whenNoDataType="NoPages"
或删除
whenNoDataType
属性(默认为“
NoPages”)

检查中有多少页

JasperPrint
,如果为 0 ,则表示 NoData

    JasperPrint print = JasperFillManager.fillReport(jasperReportStream, params, jdbcConnection);    List<JRPrintPage> pages = print.getPages();    if (pages.size()==0){ //No pages, do not export instead do other stuff    }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5475945.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存