I'm attempting to create a very basic spreadsheet (XLS) viewer for android. While using the Apache poi API I'm getting out of memory errors when creating a new XSSFWorkbook object:
mWorkBook = new XSSFWorkbook(file);
How can grab specific rows/cells inside the .xls without loading the entire file into memory?