https://issues.apache.org/bugzilla/show_bug.cgi?id=55745
--- Comment #3 from Walker <[email protected]> --- (In reply to Dominik Stadler from comment #1) > Can you provide a sample file and test code which shows the problem? > Preferably as unit test? I tried it again, and found that: 1). getTables() works when no table cells are commented; 2). getTables() works when some table cell is commented and the number of tables is less than 7, it fails when the number of tables is no less than 7. The test class: public class TablesTest { public static void main(String[] args) throws InvalidFormatException, IOException { String workbook = "workbook.xlsx"; OPCPackage pkg = OPCPackage.open(new File(workbook)); XSSFWorkbook wb = new XSSFWorkbook(pkg); XSSFSheet sheet = wb.getSheetAt(0); System.out.println(sheet.getTables().size()); } } -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
