contentType = "application/msword";
exporter = new JRRtfExporter();
}else if( FORMAT_XLS.equalsIgnoreCase( type ) ){
contentType = "application/vnd.ms-excel";
//exporter = new JRXlsExporter();
exporter = new JExcelApiExporter();
}else{
log.warn( "Export type not in ['PDF','XML','CSV','RTF','XLS','HTML'], use 'XLS'");
contentType = "application/vnd.ms-excel";
exporter = new JExcelApiExporter();
}
ByteArrayOutputStream baos = new ByteArrayOutputStream();
exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);