我正在使用此代码制作excel。
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,但没有找到任何可用的东西。 请帮我解决这个问题。
任何帮助表示赞赏。
答案 0 :(得分:2)
已经有这些属性:
net.sf.jasperreports.export.xls.auto.fit.column
和
net.sf.jasperreports.export.xls.auto.fit.row
他们的值必须设置为true
。