gpt4 book ai didi

java - 如何从Excel中获取某些值匹配的单元格数据?

转载 作者:行者123 更新时间:2023-12-01 17:45:42 24 4
gpt4 key购买 nike

因此,正如您在下面的屏幕截图中看到的,我想将所有测试用例 ID 存储在数组中,其中运行模式=否

我该怎么做?如何迭代工作表并存储值?

有什么解决办法吗?这是我的代码:

List<String> s = new ArrayList<>();
private static int findRow(HSSFSheet sheet, String cellContent) {
for (Row row : sheet) {
for (Cell cell : row) {
if (cell.getCellType() == Cell.CELL_TYPE_STRING) {
if (cell.getRichStringCellValue().getString().trim().equals("No")) {
//not able to developed further need to store the value of the first column if matched
}
}
}
}

enter image description here

最佳答案

不要检查一行中的每个单元格。相反,检查 row[2](运行模式),如果满足条件,则获取 row[1](描述)的值。

您不需要跳过第一行,因为它不满足您的条件。

关于java - 如何从Excel中获取某些值匹配的单元格数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55572441/

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