欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java 中 poi解析Excel文件版本问题解决办法

程序员文章站 2024-02-15 09:16:28
poi解析excel文件版本问题解决办法 poi解析excel文件时有两种格式: hssfworkbook格式用来解析excel2003(xls)的文件...

poi解析excel文件版本问题解决办法

poi解析excel文件时有两种格式:

hssfworkbook格式用来解析excel2003(xls)的文件

xssfworkbook格式用来解析excel2007(xlsx)的文件

如果用hssfworkbook解析excel2007(xlsx)时就会报异常:“

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)”

因为hssfworkbook和xssfworkbook都实现了workbook接口,所以我们可以用workbook来解析两个版本的excel。

代码如下:

try{
 //将文件的输入流转换成workbook
 workbook wb = workbookfactory.create(numfile.getinputstream());
 //获得第一个工作表
 sheet sheet = wb.getsheetat(0);
 //获得第一行
 row row = sheet.getrow(0);
 //获得第一行的第一列
 cell cell = row.getcell(0);
}catch (exception e){
 e.printstacktrace();
}

以上就是poi解析excel文件版本问题解决办法的详解,如有疑问请留言或者到本站社区交流讨论,谢谢大家对本站的支持!