我有这个内容的xlsx表:
some word | 0 | 1 | 2 | 3 | next blank cell
next rows
在第一行我可以得到一些数字,但这些数字总是没有相同的数量。所以,我可以得到0到5或0到10的数字。我需要知道,最后一个数字在哪里。我阅读了Apache POI库的内容。如何找到带有数字的最后一个单元格?
谢谢,我没有任何想法 - 当我有一些想法时,想法不起作用。
答案 0 :(得分: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.