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

naveenachari39

Members
  • Posts

    1
  • 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 naveenachari39

  1. Hi all, I have a main report which has 3 sub reports.I uploaded it to the jasper server and downloaded the excel sheet.I'm getting the data 3 tabs only which is the expected output.But when I download the excel sheet from my rest client api the data is splitting into multiple tabs.How controll the tabs by using java ? I'm using follwoing code to download it from jasperserver. @Testpublic void testGetBigReportAsExcelFile() {LOGGER.debug("testGetBigReportAsExcelFile");try {Report report = new Report();report.setFormat(Report.FORMAT_EXCEL);report.setUrl("/reports/10");report.setOutputFolder(outPutDir.getAbsolutePath());LOGGER.info(report.toString());JasperserverRestClient client = JasperserverRestClient.getInstance(serverUrl, serverUser, serverPassword);File reportFile = client.getReportAsFile(report);assertNotNull(reportFile);LOGGER.debug("reportFile:"+reportFile.getAbsolutePath());} catch (Exception e) {//fail(e.getMessage(), e);e.printStackTrace();}Thanks,Naveen.
×
×
  • Create New...