Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 JasperReports 设置报表中每页显示的行数。我使用 java bean 作为数据源。
没有设置每页行数的特定选项。但是,您可以设置一个条件,即在以下情况下生成一个新页面
$V{REPORT_COUNT} == $P{SOME_NUMBER}
其中 SOME_NUMBER 是您设置的参数,REPORT_COUNT 是保存当前处理的记录数的内置变量。这可以设置为页面主要详细信息带上的 printWhenExpression 属性。