gpt4 book ai didi

excel - Apache POI : comments in empty cells in an empty row

转载 作者:行者123 更新时间:2023-12-04 20:43:13 24 4
gpt4 key购买 nike

我对 Apache POI 有一个大问题。

    A       B       C       D
1 text text text text
2 comment
3 text text text text

在这个例子中,第 2 行是空的,C2 没有文本,只有一个注释。

如果我想获取第 2 行,POI 将返回 null。

如何从空行中的空单元格中获取评论?

最佳答案

要获取任意评论,无需直接通过 Cell,您可以使用 Sheet.gteCellComment(int row, int cell)

从您的示例中,要获取 C2 中的评论,请执行以下操作:

CellReference ref = new CellReference("C2")
Comment commentC2 = sheet.getCellComment(ref.getRow(), ref.getCol());

关于excel - Apache POI : comments in empty cells in an empty row,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27611496/

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