-2

我有这个内容的 xlsx 表:

some word | 0 | 1 | 2 | 3 | next blank cell
next rows

在第一行我可以有一些数字,但这些数字并不总是相同的数量。所以,我可以得到从 0 到 5 或从 0 到 10 的数字。我需要知道最后一个数字在哪里。我使用 Apache POI 库阅读内容。如何找到最后一个带有数字的单元格?

谢谢,我没有任何想法 - 当我有想法时,想法不起作用。

4

1 回答 1

0

使用以下

    for(i = row.getLastCellNum();i>=0;i--){
        if(row.getCell(i)!=null){
            if(!row.getCell(i).toString().isEmpty())
                break;
        }
    }//now i is the last cell number which is not blank.
于 2013-06-28T10:48:18.993 回答