如何制作由jxl.jar和jasperReports.jar生成的Excel自动调整

时间:2011-12-05 15:56:25

标签: java jasper-reports export-to-excel

我正在使用此代码制作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,但没有找到任何可用的东西。  请帮我解决这个问题。

任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:2)

已经有这些属性:

net.sf.jasperreports.export.xls.auto.fit.column

net.sf.jasperreports.export.xls.auto.fit.row

他们的值必须设置为true