I am using Apache POI to read excel file. My file is about 100MB, and i got this java.lang.OutOfMemoryError: Java heap while loading workbook
XSSFWorkbook workbook = new XSSFWorkbook(excelFilePath);
My computer RAM is 8GB so its can't afford to use -Xmx too large. So my question is how can i handle this error?
EDIT
Samples of my data (My data is about 1087490 rows):