作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在使用 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/
我是一名优秀的程序员,十分优秀!