The supplied data appears to be in the Office 2007+ XML. You are calling the part of POI that deals 报错怎么解决
时间: 2023-11-02 08:22:20 浏览: 102
这个报错通常出现在使用POI库处理Office 2007 XML格式数据时。要解决这个问题,你可以尝试以下几个步骤:
1. 确保你使用的是最新版本的POI库。可以通过查看POI库的官方网站或者仓库来获取最新版本。
2. 检查你的代码是否正确地引入了POI库的相关模块和依赖项。确保你的代码中包含了处理Office 2007 XML格式数据所需的所有类和方法。
3. 检查你的数据文件是否正确。确保文件格式符合Office 2007 XML标准,并且没有损坏或缺失的部分。
4. 根据具体的报错信息,查找相关的解决方案或者在社区中寻求帮助。可能有其他开发者已经遇到了类似的问题并给出了解决方法。
如果上述步骤无法解决问题,你可以尝试搜索相关的错误信息或者提供更详细的错误信息,这样我可以给出更具体的帮助。
相关问题
The supplied data appears to be in the Office 2007+ XML. You are calling the part of POI that deals
"The supplied data appears to be in the Office 2007 XML. You are calling the part of POI that deals with OLE2 Office Documents." 这个错误是由于使用了错误的POI解析类导致的。POI是一个用于操作Microsoft Office文件的开源库,分为HSSF和XSSF两部分,分别用于处理旧版(xls)和新版(xlsx)的Excel文件。当你使用HSSFWorkbook来解析xlsx文件时,就会出现这个错误。正确的处理方法是使用XSSFWorkbook来解析xlsx文件。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [NPOIDemo.zip](https://download.csdn.net/download/qq_23663693/12370014)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *2* [java处理excel库,poi-bin-4.1.0-20190412](https://download.csdn.net/download/cp62/11156022)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *3* [The supplied data appears to be in the Office 2007+ XML. You are calling the part of POI that deals](https://blog.csdn.net/weixin_46205984/article/details/122255403)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
[ .reference_list ]
The supplied data appears to be in the Office 2007+ XML. You are calling the part of POI that deals with OLE2 Office Documents.
您提到的"The supplied data appears to be in the Office 2007 XML. You are calling the part of POI that deals with OLE2 Office Documents."是在使用POI处理数据时遇到的问题。根据引用中的信息,您正在调用处理OLE2 Office文档的POI部分,而您需要调用另一个部分来处理Office 2007 XML数据,例如使用XSSF代替HSSF。
阅读全文