我尝试使用 Apache POI 获取EXCEL文件的单元格值,以便在另一个应用程序中显示这些值。
我有一个问题,因为我没有得到在Excel中看到的确切值。 例如:
-----------------------------------------------------------
|What is inside the Excel | What I get with Apache POI |
-----------------------------------------------------------
| 2019-03-02 | Sat Mar 02 20:45:00 CET 2019 | getDateCellValue()
-----------------------------------------------------------
| 19 | 19.0 | getNumericCellValue()
-----------------------------------------------------------
使用Excel打开文件时,我应该怎么做才能获得在单元格中看到的确切值?
谢谢