org.apache.poi.poifs.filesystem.OfficeXmlFileException异常

场景:解析excel的时候出现

完整bug名称:org.apache.poi.poifs.filesystem.OfficeXmlFileException: The supplied data appears to be in the Office 2007+ XML. You are calling the part of POI that deals with OLE2 Office Documents. You need to call a different part of POI to process this data (eg XSSF instead of HSSF)

字面的意思是文件中的数据是用Office2007+XML保存的,而现在却调用OLE2 Office文档处理,应该使用POI不同的部分来处理这些数据,比如使用XSSF来代替HSSF

org.apache.poi.poifs.filesystem.OfficeXmlFileException异常_第1张图片

参考文章: 
https://blog.csdn.net/guo147369/article/details/78364543

你可能感兴趣的:(java)