在poi-4.0.1中找不到符号变量Cell.CELL_TYPE_STRING

时间:2019-01-31 08:41:52

标签: java apache-poi

有人可以用这个错误回答我吗,我正在使用poi-4.0.1

error: cannot find symbol
symbol: variable CELL_TYPE_STRING
location: interface Cell

这是我的代码:

 if(Cell.CELL_TYPE_STRING == cell.getCellType()){
}

1 个答案:

答案 0 :(得分:0)

switch(cell.getCellType()) {
    case STRING:
        System.out.print(cell.getStringCellValue())
}