How to stop sub reports spliting into multiple tabs when downloading An EXCEL sheet from jasper server using REST client API.

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.

@Test
public 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.
naveenachari39's picture
Joined: Jul 26 2017 - 4:18am
Last seen: 6 years 2 months ago

0 Answers:

No answers yet
Feedback