Hmmm! It seems that using row.cellIterator()
will return the defined cells in the row in reverse column number order.
Well, nobody said it wouldn't.
But, wouldn't it be better for it to start from the lowest column number
defined cell?
Or, the documentation should provide a caution that the order is not
guaranteed.

java.util.Iterator celliter = row.cellIterator();
       while ( celliter.hasNext() )  // get the cells that exist
       {
        HSSFCell c = (HSSFCell)( celliter.next() );


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to