On Tue, 14 Feb 2012, mouss4rs wrote:
Indeed, I wish to get back the contents of a cell in Excel.
Ex:
I get back the contents in the line 18 and in the column 3.
Is it feasible without loop?
Fetch row 18, then fetch column 3, taking care to check if they exist or
not?
eg
Row r18 = sheet.getRow(17); // 0 based
if (r18 != null) {
Cell c3 = r18.getCell(2); // 0 based
if (c3 != null) {
// The cell exists, use it
}
}
Nick
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]