Jump to content
We've recently updated our Privacy Statement, available here ×

madhan1kumar

Members
  • Posts

    2
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by madhan1kumar

  1. @Hozawa Could you share examples I can refer. Im not using Jasper report server now. Should I move to Jasper server?
  2. I have built jasper reports and able to show the reports on web page as PDF content. But I wanted to provide export functionality to xls,cvs etc what a JasperViewer(Swing) one provides. Do we have simialiar class for webapplication where I can JasperPrint and get displayed on the page. Purpose of this request to have JasperViewer equivalent is to achieve export functionality for my report(this is supported in JasperViewer). Im using below code in jsp now, <%InputStream inputStream = this.getClass().getResourceAsStream(request.getAttribute("filename")+"");JasperDesign jasperDesign = JRXmlLoader.load(inputStream);JasperReport jasperReport = JasperCompileManager.compileReport(jasperDesign);JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport,(HashMap<String, Object>)request.getAttribute("params"), (JRBeanCollectionDataSource)request.getAttribute("beanColDataSource"));JasperViewer.viewReport(jasperPrint);%> But this opens JasperViewer swing UI.
×
×
  • Create New...