Examples of JRPdfResource


Examples of org.wicketstuff.jasperreports.JRPdfResource

    ServletContext context = ((WebApplication) getApplication()).getServletContext();
    final File reportFile = new File(context.getRealPath("/reports/WebappReport.jasper"));

    final Map parameters = new HashMap();
    parameters.put("BaseDir", new File(context.getRealPath("/reports")));
    JRResource pdfResource = new JRPdfResource(reportFile).setReportParameters(parameters).setReportDataSource(new WebappDataSource());
    add(new EmbeddedJRReport("report", pdfResource));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.