https://bz.apache.org/bugzilla/show_bug.cgi?id=65613
--- Comment #12 from [email protected] --- Created attachment 38075 --> https://bz.apache.org/bugzilla/attachment.cgi?id=38075&action=edit JUnitTest for DeferredSXSSFWorkbook usage I can not use the SXSSFWSheets, since they create a SheetDataWriter in their constructor and the SheetDataWriter always produces a temp file (see SheetDataWriter.java line 72), which is a showstopper in my case. The DeferredSXSSFWorkbook on the other hand uses a StreamingSheetWriter, which does not produce temp files. So i would either need a SXSSFSheet that uses a StreamingSheetWriter or a DeferredSXSSFWorkbook, which lets me flush rows before the writing process. I have searched through your examples and tests but all of them use the RowGenerator, which i cannot use. I have added a JUnitTest to illustrate my problem. -- 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]
