View Single Post
  #1 (permalink)  
Old 06-22-2007, 03:10 PM
bbq bbq is offline
Senior Member
 
Join Date: Jun 2007
Posts: 134
bbq is on a distinguished road
slow JasperReport
I did a report with iReport, when I test it inside of iReport works, but when I do the preview in the program but it takes a lot of minutes to do it.
Why?
this is the code:
Code:
String reportSource = "./report/test3.jrxml"; HashMap params = new HashMap(); JRDesignQuery queryReport = new JRDesignQuery(); params.put("something","1"); try { JasperDesign diReport= JRXmlLoader.load(reportSource); queryReport.setText(consult); diReport.setQuery(queryReport); JasperReport jasperReport = JasperCompileManager.compileReport(diReport); JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, params, DB.getConnection()); JasperViewer ReporttoPreview = new JasperViewer(jasperPrint,false); ReporttoPreview .setTitle("lawyers"); ReporttoPreview .show();
plz help me!!
Reply With Quote
Sponsored Links