gpt4 book ai didi

java - 替代已弃用的 getCellType

转载 作者:IT老高 更新时间:2023-10-28 20:36:12 27 4
gpt4 key购买 nike

我正在使用 org.apache.poi 3.15 读取一个 excel 文件(文件扩展名为 xlsx)。

这是我的代码:

try (FileInputStream fileInputStream = new FileInputStream(file); XSSFWorkbook workbook = new XSSFWorkbook(file)) {
XSSFSheet sheet = workbook.getSheetAt(0);
Iterator<Row> rowIterator = sheet.iterator();
while (rowIterator.hasNext()) {
Row row = rowIterator.next();

Iterator<Cell> cellIterator = row.cellIterator();
while (cellIterator.hasNext()) {
Cell cell = cellIterator.next();
switch (cell.getCellType()) {
case Cell.CELL_TYPE_NUMERIC:
System.out.print(cell.getNumericCellValue() + "(Integer)\t");
break;
case Cell.CELL_TYPE_STRING:
System.out.print(cell.getStringCellValue() + "(String)\t");
break;
}
}
System.out.println("");
}
} catch (Exception e) {
e.printStackTrace();
}

我收到警告说 cell.getCellType() 已弃用。谁能告诉我替代方案?

最佳答案

接受的答案显示了弃用的原因,但没有提及替代方案:

CellType    getCellTypeEnum()

CellType 是描述单元格类型的枚举。

计划在 POI 4.0 中将 getCellTypeEnum() 重命名为 getCellType()

关于java - 替代已弃用的 getCellType,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39993683/

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