https://issues.apache.org/bugzilla/show_bug.cgi?id=52220
--- Comment #3 from Yegor Kozlov <[email protected]> 2011-11-21 10:42:13 UTC --- (In reply to comment #2) > how can we read excel file without using iterator??? for(int i = sheet.getFirstRowNum(); i <= sheet.getLastRowNum(); i++){ Row row = sheet.getRow(i); for(int j = row.getFirstCellNum(); j <= row.getLastCellNum(); j++){ Cell cell = row.getCell(j); } } -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- 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]
