一、该问题的重现步骤是什么?
1. poi-5.2.2 poi-ooxml-5.2.2
2.
3.
二、你期待的结果是什么?实际看到的又是什么?
三、你正在使用的是什么产品,什么版本?在什么操作系统上?
四、请提供详细的错误堆栈信息,这很重要。
五、若有更多详细信息,请在下面提供。
试下这个例子:
import org.apache.poi.ss.usermodel.*;
import java.io.FileInputStream;
import java.io.IOException;
public class ReadExcel {
public static void main(String[] args) throws IOException {
String filePath = "example.xlsx";
FileInputStream inputStream = new FileInputStream(filePath);
Workbook workbook = WorkbookFactory.create(inputStream);
Sheet sheet = workbook.getSheetAt(0);
Row row = sheet.getRow(0);
Cell cell = row.getCell(0);
Comment comment = cell.getCellComment();
if (comment != null) {
String formula = comment.getString().getString();
System.out.println("单元格上悬浮的新公式为:" + formula);
} else {
System.out.println("单元格上没有悬浮的新公式");
}
workbook.close();
inputStream.close();
}
}
Comment comment = cell.getCellComment();
读取不到悬浮的新公式
扫一扫访问 Blade技术社区 移动端