hi 2 all,
i was having problem in jasper report print, i was using the struts 1.2.8, my problem is when there is a multiple page in jasper it leaving nearly a page while printing after every page , why it so, anyone please help me, here is my code
Code:
JasperPrint jasperPrint = JasperFillManager.fillReport("/EmpDetails.jasper"),parameters,con);
List l=jasperPrint.getPages();
if(l.size() != 0){
JasperPrintManager.printPages(jasperPrint,0,l.size()-1,true);
}