How do i get the index of the last column when reading a xlsx file using the apache-poi API? there's a getLastRowNum method, but i can't find nothing related to the number of columns...
thanks in advance
EDIT: i'm dealing with XLSX files

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I think you'll have to iterate though the rows and check HSSFRow.getLastCellNum() on each of them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.