Exception in thread "AWT-EventQueue-0" org.apache.poi.openxml4j.exceptions.OLE2NotOfficeXmlFileException: 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-11-02 13:57:13 浏览: 175
appengine-awt:自动从code.google.compappengine-awt导出
这个异常出现的原因是你正在使用Apache POI处理一个OLE2格式的文件,但是你却调用了处理OOXML格式文件的部分。你需要使用POI的不同部分来处理这种数据,例如使用HSSF而不是XSSF来处理。建议你检查一下你的代码并根据文件格式调用正确的POI部分。如果你需要更多帮助,请提供更多的上下文信息和代码细节。
阅读全文