Caused by: java.lang.IllegalStateException: Cannot get a STRING value from a NUMERIC formula cell
时间: 2023-10-29 12:18:10 浏览: 136
这个错误是由于你试图从一个数值类型的公式单元格中获取字符串值而导致的。在Apache POI库中,当你调用getCellType()方法时,如果单元格中的值是一个公式,它将返回CellType.NUMERIC。因此,如果你想要获取公式单元格的计算结果作为字符串,可以使用DataFormatter类中的formatCellValue()方法来格式化单元格的值。
以下是一个示例代码片段,演示了如何解决这个问题:
```java
import org.apache.poi.ss.usermodel.*;
public class ExcelReader {
public static void main(String[] args) {
String filePath = "path/to/your/excel/file.xlsx";
try (Workbook workbook = WorkbookFactory.create(new File(filePath))) {
Sheet sheet = workbook.getSheetAt(0);
Row row = sheet.getRow(0);
Cell cell = row.getCell(0);
DataFormatter dataFormatter = new DataFormatter();
String cellValue = dataFormatter.formatCellValue(cell);
System.out.println("Cell value: " + cellValue);
} catch (IOException | InvalidFormatException e) {
e.printStackTrace();
}
}
}
```
在上面的代码中,我们使用DataFormatter类来格式化单元格的值,无论它是一个数字、日期、字符串或公式。这样,你就可以获取公式单元格的计算结果作为字符串值而不会出现异常。
阅读全文