https://bz.apache.org/bugzilla/show_bug.cgi?id=61031
Tim Jones <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- OS| |All --- Comment #1 from Tim Jones <[email protected]> --- I tried the following to enable shared strings: SXSSFWorkbook wb = new SXSSFWorkbook( new XSSFWorkbook(),1000,true,true); Sheet sh = wb.createSheet("Sheet"); Row r1 = sh.createRow(1); r1.createCell(1).setCellValue("One"); r1.createCell(2).setCellValue("Two"); Row r2 = sh.createRow(2); r2.createCell(1).setCellValue("One"); r2.createCell(2).setCellValue("Two"); wb.write(output); wb.dispose(); wb.close(); It resulted in a file of 3321 bytes (a new size). There's definitely more going on here. -- 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]
