如何确定电子表格单元格包含日期还是实数?
当电子表格中的单元格包含简单日期 (mm/dd/yyyy) 时,poi API 会将单元格类型标记为“数字”。这可能是因为电子表格(IMO)历来只识别字符串和实数。
可以对单元格索引进行硬编码,并有条件地使用它来调用“getDateCellValue”。但这感觉就像是黑客攻击。
poi API 中还有哪些其他方法可以确定单元格中的内容是否为日期而不是实数?
When a cell in a spreadsheet contains a simple date (mm/dd/yyyy) the poi API flags the cell-type as 'numeric'. This is probably because spreadsheets ( IMO ) historically recognize only strings and real numbers.
It is possible to hard-code the cell-index, and use it conditionally to call 'getDateCellValue'. But this feels like a hack.
What other ways are there in the poi API to determine whether the content in a cell is a Date rather than a real number?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案就在获取单元格内容部分中="http://poi.apache.org/spreadsheet/quick-guide.html" rel="noreferrer">HSSF 快速指南
The answer is in the Getting the Cell Contents section of the HSSF Quick Guide