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

poi兼容excel2003和2007写法  

程序员文章站 2022-05-13 16:25:14
...

            //创建excel文件薄对象

            Workbook workBook;

            

            fileInputStream = new FileInputStream(phonesUrl);

            

            try 

            {

                //读取exl 2007

                workBook = new XSSFWorkbook(fileInputStream);

            } 

            catch (Exception ex) 

            {

                //读取exl 2003

                fileInputStream.close();

                fileInputStream = new FileInputStream(phonesUrl);

                workBook = new HSSFWorkbook(fileInputStream);

            }