I need to start using the version 3.8 in my project which currently uses 3.7. I was hoping it would be a clean swap, but for some reason I'm getting a handful of silly errors.
XSSFReader xssfReader = new XSSFReader(pkg); - The constructor XSSFReader(OPCPackage) is undefined cell.getColumnIndex(); - The method getColumnIndex() is undefined for the type HSSFCell - Cell is definitely an HSSFCell row.getCell(x++) - The method getCell(short) in the type HSSFRow is not applicable for the arguments (int) - x confirmed as int, row as HSSFRow I haven't found anything saying the upgrade should be anything other than a direct replacement. All the constructors/methods all exist according to the API. Any ideas? Tom
