I thought I wasn't getting rows but I am.  However, something odd is
happening.  If I understand the API correctly, you have to specify a row
number when you make a row.  So I make a row and then increment the row
number.  Then I write another row and increment the row number.  The
result is that each successive row is not only lower but lower by the
new value of the row number.  So if the row number in x is 7, and I make
new row,
rowNum+= rowNum + (short)1;
HSSFRow addClassRow = gwrWS.createRow(rowNum);

the new row is eight rows below the last row.  When I call the same loop
again, the next row is nine rows below the last.  So if the row number
an absolute number or an offset from the last row?  Thanks.

Ken
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:     http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta Poi Project:  http://jakarta.apache.org/poi/

Reply via email to