Trying to load 500 MB of .xlsm file into memory and delete particular sheet from that.
OPCPackage pkg = OPCPackage.open("C:\\PROJECTS\\test.xlsm");
XSSFWorkbook wb = new XSSFWorkbook(pkg);
SXSSFWorkbook wb1 = new SXSSFWorkbook(wb, 100);
Getting out of memory while loading the pkg to workbook .
Is there any other alternate way to load such large files without memory issue?
We have another read logic getting performed on same xlsm file using parser concept ie, org.apache.xerces.parsers.SAXParser
It is working fine. Is there any possibility to alter an excel sheet using parser concept ?