有人可以用这个错误回答我吗,我正在使用poi-4.0.1
error: cannot find symbol
symbol: variable CELL_TYPE_STRING
location: interface Cell
这是我的代码:
if(Cell.CELL_TYPE_STRING == cell.getCellType()){
}
答案 0 :(得分:0)
switch(cell.getCellType()) {
case STRING:
System.out.print(cell.getStringCellValue())
}