Jump to content
Changes to the Jaspersoft community edition download ×

JasperViewer equivalent can be used for web application


madhan1kumar

Recommended Posts

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.
 
Link to comment
Share on other sites

  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...