执行JasperViewer.viewReport(jasperPrint)时,Jasper Report Creation失败;

时间:2012-04-24 08:56:51

标签: jasper-reports

Could not create the report Report design not valid : 
     1. Warning : Element bottom reaches outside band area : y=3 height=1 band-height=0
     2. Warning : Element bottom reaches outside band area : y=0 height=29 band-height=0 Report design not valid 

我是jasper Reports 4.5.1的新手。问题是当我用下面的代码调用函数时,显示上面的消息。

 JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, param, jdbcConnection);
 JasperViewer.viewReport(jasperPrint);

提前感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

当您在模板中有重叠区域时,通常会显示此错误消息,例如,该区域将重复该区域。 从错误消息的详细信息看,您看起来有2个非零高度的元素,试图定位在已折叠到零高度的波段中。

我希望这会有所帮助。