org.apache.poi.hssf.OldExcelFormatException: The supplied spreadsheet seems to be Excel 5.0/7.0

今天在做项目的过程中,需要读取excel文件,但是读取过程中一直报这样一个错误:

org.apache.poi.hssf.OldExcelFormatException: The supplied spreadsheet seems to be Excel 5.0/7.0 (BIFF5) format. POI only supports BIFF8 format (from Excel versions 97/2000/XP/2003)

是因为excel文件比较旧

解决方法一:

将源文件打开,另存为,如下图所示:

org.apache.poi.hssf.OldExcelFormatException: The supplied spreadsheet seems to be Excel 5.0/7.0

解决方法二:

使用OldExcelExtractor(译:老的excel提取器)这个类来进行解析

org.apache.poi.hssf.OldExcelFormatException: The supplied spreadsheet seems to be Excel 5.0/7.0