In JRXlsExporter::setRowHeight() the rowIndex is incorrectly typecast to a short when calling sheet.getRow() and sheet.createRow(). These two functions accept 'int' values and should not have the typecst.
When exporting to Excel, this causes erronious results on rows > 32767. In my particular instance it was leaving some cells blank when they actually had data.
Recommended Comments