Ods cells iterator does not work as expected

hello,

I am working on spreadsheet cells extraction on ods files.

I am using Aspose.Cells 2.1.0.4 for Java, which is the latest release.

Working on the attached file, I get empty iterator:

Your help is appreciated

Shay

=========================

Workbook workbook= new Workbook();

workbook.open(fileName);

Worksheets worksheets=workbook.getWorksheets();

for (int worksheetNo=0;worksheetNo<worksheets.size();worksheetNo++) {

Worksheet worksheet=worksheets.getSheet(worksheetNo);

Cells cells=worksheet.getCells();

Iterator cellIterator=cells.getCellIterator();

while (cellIterator.hasNext()) { // cellsIterator hasNext is false

Cell cell=cellIterator.next(); // this line is never reached

// take the cell value

}

}

Hi,

Thank you for considering Aspose.

Please try the attached latest version of Aspose.Cells for Java. We have fixed your mentioned issue regarding ODS file.

Thank You & Best Regards,

Issue solved,

Thanks!

The issues you have found earlier (filed as 11139) have been fixed in this update.


This message was posted using Notification2Forum from Downloads module by aspose.notifier.