How to solve the java heap space error while loading the large xls file using POI
问题 I am trying to load and parse a xls file which is of 11mb and I am using WorkbookFactory.create(myFile)) to load it.But I am not able to load this file and parse it.Can anyone help me out of this this the code I am using in my program , public class LargeExcelManager { private Workbook wb ; public Workbook getWb() { return wb; } public void setWb(Workbook wb) { this.wb = wb; } public LargeExcelManager(String fileName)throws Exception { openWorkbook(fileName); } private void openWorkbook