Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 excel 文件,其中一列包含 dd/mm/yyyy hh:mm 格式的日期和时间。 我想阅读它们,发现可以使用 apache-poi 在 java 中读取 excel 文件。但我没有得到这些价值。我怎样才能获得这些价值?
如果您知道哪个单元格(即列位置),则每行中将是一个日期。
然后你可以通过row.getCell(0).getDateCellValue().
row.getCell(0).getDateCellValue()
获取日期单元值()
有关更多通用案例,请在此处找到
还知道如何在此处使用 POI.jar 读取和写入 excel 文件