如何在Jasper / iReport中创建多页PDF报告?

时间:2012-08-18 13:02:45

标签: jasper-reports ireport

我想使用 iReport 创建多页PDF报告。

当我在 iReport 中进行设计时,它会跨越A4页面大小。如果我增加页面高度,它会在页面中打印出空白区域。如何创建多页报告?

结果报告:

enter image description here

2 个答案:

答案 0 :(得分:1)

在主报表的常用属性中有页面设置选项。在那里,您可以在输出中提供所需的页面尺寸。同时忽略分页标志应设置为false

答案 1 :(得分:0)

我正在使用波纹管代码,它对我来说非常完美。您也可以尝试使用此代码。

<detail>
        <band height="802" splitType="Stretch">
        // page 1 design here
        </band>



        <band height="802" splitType="Stretch">
        // page 2 design here
        </band>



        <band height="802" splitType="Stretch">
        // page 3 design here
        </band>


</detail>

My actual code output pdf screen shot

请注意:我将所有边距设为0 i set the page margin as 0