2

我对 Apache POI 有一个大问题。

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

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

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

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

4

1 回答 1

1

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

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

CellReference ref = new CellReference("C2")
Comment commentC2 = sheet.getCellComment(ref.getRow(), ref.getCol());
于 2014-12-23T01:21:39.080 回答