https://bz.apache.org/bugzilla/show_bug.cgi?id=56574
--- Comment #4 from Dominik Stadler <[email protected]> --- The problem in your code is Row row = sheet.createRow(rownum++); with this you are effectively overwriting an existing row and POI seems to not handle this nicely right now. By using Row row = sheet.getRow(rownum++); your example works as expected. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
