Java XSSFSheet
cannot get the correct date value.
Java XSSFSheet不能获得正确的日期值。
It displays an invalid number.
I gave in excel as date: 9/24/2017
它显示一个无效的数字。我在excel中给出日期:2017年9月24日
But while debugging the date displays as 43002
但是调试时,日期显示为43002
Please tell me the solution.
请告诉我解决办法。
1 个解决方案
#1
1
It evident from the screen shot that the date used in the excel and the date format to parse the same is not matching.
从屏幕截图中可以明显看出,excel中使用的日期和解析相同的日期格式不匹配。
In order to solve the issue, make the following changes
为了解决这个问题,进行以下更改
- Use the date in excel as
09/24/2017
- 使用excel中的日期为2017年9月24日
- In the class, change the date format as
MM/dd/yyyy
- 在课程中,更改日期格式为MM/dd/yyyy
#1
1
It evident from the screen shot that the date used in the excel and the date format to parse the same is not matching.
从屏幕截图中可以明显看出,excel中使用的日期和解析相同的日期格式不匹配。
In order to solve the issue, make the following changes
为了解决这个问题,进行以下更改
- Use the date in excel as
09/24/2017
- 使用excel中的日期为2017年9月24日
- In the class, change the date format as
MM/dd/yyyy
- 在课程中,更改日期格式为MM/dd/yyyy