: The supplied data appears to be in the OLE2 Format. You are calling the part of POI that deals with OOXML (Office Open XML) Documents. You need to call a different part of POI to process this data (eg HSSF instead of XSSF)
时间: 2023-07-19 13:27:45 浏览: 373
Office Open XML File Formats
这个错误通常出现在使用 Apache POI 处理 Excel 文件时,因为 Apache POI 提供了两个不同的 API 用于处理 Excel 文件,即 HSSF 和 XSSF,分别对应 Excel 2003 和 Excel 2007 及以上版本。如果你在处理 Excel 文件时出现这个错误,说明你使用了错误的 API。你需要检查你的代码,确认你使用的是正确的 API。如果你的 Excel 文件是一个旧版本(即 Excel 2003 及以前版本),你需要使用 HSSF API 来处理它。如果你的 Excel 文件是一个新版本(即 Excel 2007 及以后版本),你需要使用 XSSF API 来处理它。
阅读全文