Deberá saber en tiempo de ejecución si está exportando a Excel o PDF, lo cual debe saber.
Sólo como ejemplo:
public void generateReport(JasperPrint report, boolean isExcel, String saveTo){
JRExporter exporter = null;
if (isExcel) {
exporter = new JRXlsExporter();
exporter.setParameter(JRXlsExporterParameter.IS_REMOVE_EMPTY_SPACE_BETWEEN_ROWS, Boolean.TRUE);
exporter.setParameter(JRXlsExporterParameter.IS_WHITE_PAGE_BACKGROUND, Boolean.FALSE);
exporter.setParameter(JRXlsExporterParameter.IS_DETECT_CELL_TYPE, Boolean.TRUE);
//we set the one page per sheet parameter here
exporter.setParameter(JRXlsExporterParameter.IS_ONE_PAGE_PER_SHEET, Boolean.TRUE);
} else {
exporter = new JRPdfExporter();
}
exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);124
exporter.setParameter(JRExporterParameter.OUTPUT_FILE_NAME, saveTo);
export.exportReport();
}
Puede pasar esta propiedad a través del parámetro JRParameter.IS_IGNORE_PAGINATION (en caso de que utilice el método JasperFillManager.fillReport) –
Hola Alex, lo que quiero es exactamente cómo configurar "isIgnorePagination = 'true'" para PDF y "isIgnorePagination = 'false'" para excel? – HariKanna
Desde el código java puede establecer JRParameter.IS_IGNORE_PAGINATION y establecer el formato de exportación como desee –