jasper ireport create a report with parameters without sql query

人盡茶涼 提交于 2019-12-18 07:04:23

问题


I'm new in jasper ireport , and I want to know if it is possible to create a report only with static text and parameters, but without any sql query.

When I design my report it is possible , but when I try to preview it , I get this message: "The document has no pages" .

I want my java program to pass the parametrs and show them with the static text

Thank's In Advance.


回答1:


You get that message because the "When No Data" property of your report is set to "No Pages". Try setting it to "All Sections, No Detail" and all bands will appear except the Detail band. You can find this property in the Report Properties section, or you can add it directly in the jrxml:

<jasperReport ... whenNoDataType="AllSectionsNoDetail" ... >


来源:https://stackoverflow.com/questions/6842853/jasper-ireport-create-a-report-with-parameters-without-sql-query

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!