Exporting Large Amount Of Data Using Jxls-core 1.0.2 Hi all, I'm having issues with exporting (to excel) big bean with more than 40 thousand items using Jxls core 1.0.2 Sometimes I get Java out of memory error. Is there a way to Implement it in chunch (write in chuncks)? It works fine with less than 5 000
Map<String, Object> beans = new HashMap<String, Object>();
beans.put("users", users);
XLSTransformer transformer = new XLSTransformer();
Workbook workbook;
try {
workbook = transformer.transformXLS(new FileInputStream(filePath),
beans);
System.out.println(workbook);
workbook.write(responseOutputStream);