exporterXLS.setParameter(JRExporterParameter.JASPER_PRINT, print);
exporterXLS.setParameter(JRExporterParameter.OUTPUT_STREAM, outputStream);
exporterXLS.setParameter(JRXlsExporterParameter.IS_ONE_PAGE_PER_SHEET, Boolean.FALSE);
exporterXLS.setParameter(JRXlsExporterParameter.IS_WHITE_PAGE_BACKGROUND, Boolean.FALSE);
exporterXLS.setParameter(JRXlsExporterParameter.IS_REMOVE_EMPTY_SPACE_BETWEEN_ROWS, Boolean.TRUE);
exporterXLS.exportReport();
break;
case ODS:
logger.debug(bundle.getString("exporting-report", "ods"));
JROdsExporter exporterODS = new JROdsExporter();
exporterODS.setParameter(JRExporterParameter.JASPER_PRINT, print);