使用 Java 代码读取 excel 文件代码时报错如下: jxl.read.biff.BiffException: Unable to recognize OLE stream at jxl.read.biff.CompoundFile.<init> ...
使用 java 代码读取 excel 文件代码时报错如下: jxl.read.biff.BiffException: Unable to recognize OLE stream at jxl.read.biff.CompoundFile. lt init gt CompoundFile.java: at jxl.read.biff.File. lt init gt File.java: at j ...
2015-01-19 14:14 0 5106 推荐指数:
使用 Java 代码读取 excel 文件代码时报错如下: jxl.read.biff.BiffException: Unable to recognize OLE stream at jxl.read.biff.CompoundFile.<init> ...
Unable to recognize OLE stream 的解决方法 将xlsx用excel打开并另存为2003的xls,然后再运行即可解决问题 ...
异常信息: jxl.read.biff.BiffException: Unable to recognize OLE streamat jxl.read.biff.CompoundFile.<init>(CompoundFile.java:116 ...
java代码读取excel文件时报: jxl.read.biff.BiffException: Unable to recognize OLE stream at jxl.read.biff.CompoundFile.<init>(CompoundFile.java:116 ...
出现这个异常是因为文件是Excel2007,而jxl解析07会报上述异常,也就是jxl可以处理Excel2003 方法: 打开文件,右上角文件另存为,选类型2003文 件,(还没试2003模版会怎样) 将导入的文件名改成现在的,试一下 ...
package com.murong.ecp.readfile; import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java ...
...
...