I am using XSSF to access the .xlsx format. Extracting row data and cell data is being done by

Row.getCell(1) // to get the first cell data.

Is there a way to access cells like

Row.getCell(A) or Row.getCell(AC).

This will be very helpfull for me to access columns. Can any one tell me the way to do this?

Thanks in advance

link|improve this question
feedback

1 Answer

I think the main class you're looking for is CellReference - it handles converting between user facing references such as "B2" into file format references like row=1,col=1 . There's a static method on there that handles your exact use case, convertColStringToIndex

For your use case, you'd want code something like

 Cell c = row.getCell( CellReference.convertColStringToIndex("G") );
link|improve this answer
1  
@Rajath Don't you think it's time to set this as the best answer? ;) – Giorgio Vespucci Mar 12 at 15:18
feedback

Your Answer

 
or
required, but never shown

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