我正在使用此代码来制作卓越的软件。
exporterXLS = new JExcelApiExporter();
exporterXLS.setParameter(JRXlsExporterParameter.JASPER_PRINT, jasperPrint);
exporterXLS.setParameter(JRXlsExporterParameter.OUTPUT_FILE, file2);
exporterXLS.setParameter(JRXlsExporterParameter.IS_ONE_PAGE_PER_SHEET, Boolean.FALSE);
exporterXLS.setParameter(JRXlsExporterParameter.IS_DETECT_CELL_TYPE, Boolean.TRUE);
exporterXLS.setParameter(JRXlsExporterParameter.IS_WHITE_PAGE_BACKGROUND, Boolean.FALSE);
exporterXLS.setParameter(JRXlsExporterParameter.IS_REMOVE_EMPTY_SPACE_BETWEEN_ROWS, Boolean.TRUE);
我搜索了整个api,但没有发现任何有用的东西。
请帮我解决这个问题。
任何帮助表示赞赏。
最佳答案
已经有这些属性:
net.sf.jasperreports.export.xls.auto.fit.column
和:
net.sf.jasperreports.export.xls.auto.fit.row
它们的值必须设置为
true
。