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.
0 Answers:
No answers yet