protected void fillAndExportReport(final InputStream templateInputStream,
final Map<String, Object> reportParameters,
final JRDataSource jrDataSource,
final Exporter exporter) throws JRException {
final JasperPrint jasperPrint = JasperFillManager.fillReport(templateInputStream, reportParameters, jrDataSource);
exporter.setExporterInput(new SimpleExporterInput(jasperPrint));
exporter.exportReport();
}