• excel读取 The supplied data appears to be in the Office 2007+ XML


    上边代码,但是一旦读取的是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)”

    Excel2003版的.xls文件读取  HSSFWorkbook workbook = new HSSFWorkbook(fs);
    Excel2007版本的Excel文件读取  XSSFWorkbook workbook = new XSSFWorkbook(fs);

    所以,在导入Excel的时候,尽量能判断导入Excel的版本,调用不同的方法。

    我想到过使用文件后缀名来判断类型,但是如果有人将xlsx的后缀改为xls时,如果使用xlsx的函数来读取,结果是报错;虽然后缀名对了,但是文件内容编码等都不对。

    最后,推荐使用poi-ooxml中的WorkbookFactory.create(inputStream)来创建Workbook,因为HSSFWorkbook和XSSFWorkbook都实现了Workbook接口。代码如下:

    Workbook wb = WorkbookFactory.create(is);

    可想而知,在WorkbookFactory.create()函数中,肯定有做过对文件类型的判断,一起来看一下源码是如何判断的:
    /**
    * Creates the appropriate HSSFWorkbook / XSSFWorkbook from
    * the given InputStream.
    * Your input stream MUST either support mark/reset, or
    * be wrapped as a {@link PushbackInputStream}!
    */
    public static Workbook create(InputStream inp) throws IOException, InvalidFormatException {
    // If clearly doesn't do mark/reset, wrap up
    if(! inp.markSupported()) {
    inp = new PushbackInputStream(inp, 8);
    }

    if(POIFSFileSystem.hasPOIFSHeader(inp)) {
    return new HSSFWorkbook(inp);
    }
    if(POIXMLDocument.hasOOXMLHeader(inp)) {
    return new XSSFWorkbook(OPCPackage.open(inp));
    }
    throw new IllegalArgumentException("Your InputStream was neither an OLE2 stream, nor an OOXML stream");
    }

    可以看到,有根据文件类型来分别创建合适的Workbook对象。是根据文件的头部信息去比对进行判断的,此时,就算改了后缀名,还是一样通不过。

  • 相关阅读:
    mysql 复制表数据,表结构的3种方法
    MySQL 存储过程使用表名做参数
    关于mysql engine(引擎)的疑问
    mysql存储过程之循环
    mysql 命令大全
    关于mysql的表名/字段名/字段值是否区分大小写的问题
    navicat for mysql 快捷键(原创)
    解决"Subquery returns more than 1 row"sql查询错误
    mysql:“Access denied for user 'root@IP地址'"
    MySQL常用经典语句
  • 原文地址:https://www.cnblogs.com/luoxiaoxiao102/p/12938530.html
Copyright © 2020-2023  润新知