gpt4 book ai didi

java - 如何确定空行?

转载 作者:IT老高 更新时间:2023-10-28 21:21:15 26 4
gpt4 key购买 nike

如何使用 Apache POI 确定 .xls 文档中的空行?

最佳答案

我在我的 POI 项目中使用了以下方法,并且效果很好。它是 zeller 解的一种变体。

public static boolean isRowEmpty(Row row) {
for (int c = row.getFirstCellNum(); c < row.getLastCellNum(); c++) {
Cell cell = row.getCell(c);
if (cell != null && cell.getCellType() != Cell.CELL_TYPE_BLANK)
return false;
}
return true;
}

关于java - 如何确定空行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12217047/

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