gpt4 book ai didi

java - 如何使用 apache poi 循环遍历所有非空行?

转载 作者:行者123 更新时间:2023-12-01 23:11:12 27 4
gpt4 key购买 nike

我想循环遍历所有行,直到遇到 null

int startRow = 4;

ArrayList<String> uniques = new ArrayList<String>();

int k = 0 ;
while (sheet.getRow(startRow+k).getCell(2) != null) { // null pointer here ?
uniques.add(sheet.getRow(startRow+k).getCell(2).toString());
k++ ;
}

我收到一个NullPointerException

最佳答案

您正在检查 Cell 是否为 null,而不是 Row 本身。

while (sheet.getRow(startRow+k) != null &&
sheet.getRow(startRow+k).getCell(2) != null) {

关于java - 如何使用 apache poi 循环遍历所有非空行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21945763/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com