poi522读取xls报错ole可以这么做:文档不是真实的Excel文件,是xml文件不符合,我用wps和office新建的Excel文件xls和xlsx都报错文档加密不符合经查看源码,POI会判断文档类型,如果不是OLE2或OOXM类型就会抛出异常,升级poi-ooxml至最新版本523,最新版本对文档类型的判断有更新,可以正确识别文件类型
通过apache 的poi方法完成excel的读写,cell数据读写等常规 *** 作,支持xls xlsx表格格式。
需要添加依赖的jar资源,具体如下:
xls格式的excel 表格需要通过HSSFWorkbook加载,而xlsx格式的excel表格需要XSSFWorkbook表格加载,获取WorkBook对象实例,这个实例对象就是表格文件的对象,具体为:
上面不同后缀的文件 *** 作方法有所区分,分为两类,xls表格对应的HSSFWorkbook类方法,xlsx对应的XSSFWorkbook类方法, *** 作过程基本类似,下面以HSSFWorkbook为例进行讲述。( xls,xlsx只要获取到wb后,如果没有特别的处理 *** 作,后续采用这两种方法的任一种都是可以进行表格数据处理,可以不做区分 )
补充:获取wb后,wb提供的方法有很多,包括创建表格createSheet,获取表格名称getSheetName等等,具体根据自己需求使用。
正常来说,每个Excel文件都会有多个sheet表格,比如Sheet1,Sheet2,Sheet3等等,我们通过第一步获取的wb对象,就可以轻松的拿到Excel表格的实例对象,方法两种,可以根据Excel表格的index序号获取,也可以通过Excel表格的名字获取,具体如下:
补充:sheet对象同样提供了用于 *** 作本表格的很多方法,包括行列读写,新填行列等等所有表格相关的 *** 作内容。
上一步获取了sheet对象,我们就可以获取具体的行列数据了。
通过上述cell对象我们就可以获得具体的内容了,包括内容格式等等详细信息。
单元格读取方式根据其类型有所不同,具体如下所示。
如果想给新添加的Cell设置个字体格式及颜色啥的,也是可以的,比如把刚新建的Cell字体设为红色,具体如下:
上面步骤,只是对于表格数据的处理,但实际上并没有保存到文件,如果此时就结束,那表格文件里的数据其实是没有更改,一定要记得最后要保存到表格哦~,具体如下:
到此,基本的表格读写处理已经基本完成了,Poi的方法库其实有很多 *** 作,这里只是简单介绍的基本的读写,如果你想修改表格字体等等,都是可以实现的哦,赶紧动手试试吧。
本程序Gitee源码地址: >
首先了解以下excel文件怎么和poi中的组件对应起来的。
基于以上几条,如果想对excel文件进行读写的话就要
基于以上原理就可以轻松对Excel文件进行读写,这里以XSSFWorkbook(对应xlsx文件即office2007以上版本,如果是xls文件即office2003以下版本需要使用HSSFWorkbook)为例进行Excel的简单读写。
maven依赖
写 *** 作
读 *** 作和写 *** 作类似,把create的地方换成get即可
当然也可以根据文件扩展名自动选择使用哪个子类生成Workbook对象,这里直接封一个util工具类,方便以后直接使用
XSSFWorkbook wb=new XSSFWorkbook(参数);中的参数是InputStream ,你直接XSSFWorkbook wb=new XSSFWorkbook(fs);就可以了。
第一步查询数据--这一步读者自行实现自己的数据查询 List<PointInfo> points = null;
points = thisdaogetAllCollect(userId);
final Map<String, List<PointInfo>> pointMap = new HashMap<>();
for (final PointInfo pointInfo : points) {
final String pt = pointInfogetPointType(); if (pointMapcontainsKey(pt)) {final List<PointInfo> subList = pointMapget(pt);
subListadd(pointInfo);
} else {final List<PointInfo> subList = new ArrayList<>();subListadd(pointInfo);
pointMapput(pt, subList
第二步:生成工作簿
final SXSSFWorkbook wb = new SXSSFWorkbook();
// 对每一种类型生成一个sheet
for (final MapEntry<String, List<PointInfo>> entry : pointMapentrySet()) {
final List<PointInfo> pts = entrygetValue();
// 获取每种类型的名字--作为sheet显示名称--如果不需要分sheet可忽略
String typeName = "";
if (thisdaogetTypeByTypeCode(ptsget(0)getPointType()) != null) {
typeName = thisdaogetTypeByTypeCode(ptsget(0)getPointType())getPointTypeName();
}
final Sheet sheet = wbcreateSheet(typeName);
//生成用于插入的容器--这个方法返回的类型在老api中不同
final Drawing patriarch = sheetcreateDrawingPatriarch();
// 为sheet1生成第一行,用于放表头信息
final Row row = sheetcreateRow(0);
// 第一行的第一个单元格的值
Cell cell = rowcreateCell((short) 0);
cellsetCellValue("详细地址");
cell = rowcreateCell((short) 1);
cellsetCellValue("经度");
cell = rowcreateCell((short) 2);
cellsetCellValue("纬度");
cell = rowcreateCell((short) 3);
for (int i = 0; i < ptssize(); i++) {
final Row each = sheetcreateRow(i + 1);
Cell infoCell = eachcreateCell((short) 0);
infoCellsetCellValue(ptsget(i)getAddrDetail());
infoCell = eachcreateCell((short) 1);
infoCellsetCellValue(ptsget(i)getX());
infoCell = eachcreateCell((short) 2);
infoCellsetCellValue(ptsget(i)getY());
infoCell = eachcreateCell((short) 3);
//查询获取路径信息--该步读者自定义
PointPic pic = thisdaogetPicInfoByPointId(ptsget(i)getId());
try {
if (pic != null) {
for (int k = 0; k < 6; k++) {//因为有六张,所以循环6次
final short colNum = (short) (4+k);
infoCell = eachcreateCell(colNum);
BufferedImage img = null;
switch (k) {
case 0:
if (!StringUtilsisEmpty(picgetPicOneAddr())) {
File imgFile = new File(picgetPicOneAddr());
img = ImageIOread(imgFile);
imgFile = null;
}
break;
case 1:
if (!StringUtilsisEmpty(picgetPicTwoAddr())) {
File imgFile = new File(picgetPicTwoAddr());
img = ImageIOread(imgFile);
imgFile = null;
}
break;
case 2:
if (!StringUtilsisEmpty(picgetPicThreeAddr())) {
File imgFile = new File(picgetPicThreeAddr());
img = ImageIOread(imgFile);
imgFile = null;
}
break;
case 3:
if (!StringUtilsisEmpty(picgetPicFourAddr())) {
File imgFile = new File(picgetPicFourAddr());
img = ImageIOread(imgFile);
imgFile = null;
}
break;
case 4:
if (!StringUtilsisEmpty(picgetPicFiveAddr())) {
File imgFile = new File(picgetPicFiveAddr());
img = ImageIOread(imgFile);
imgFile = null;
}
break;
case 5:
if (!StringUtilsisEmpty(picgetPicSixAddr())) {
File imgFile = new File(picgetPicSixAddr());
img = ImageIOread(imgFile);
imgFile = null;
}
break;
}
ByteArrayOutputStream byteArrayOut = new ByteArrayOutputStream();
ImageIOwrite(img, "jpg", byteArrayOut);
img = null;
//设置每张插入位置
final XSSFClientAnchor anchor = new XSSFClientAnchor(0, 0, 0, 0, colNum,
i + 1, (short) (colNum + 1), i + 2);//参数为插入在表格的坐标,可以自行查看api研究参数
anchorsetAnchorType(0);
// 插入
patriarchcreatePicture(anchor, wbaddPicture(
byteArrayOuttoByteArray(), HSSFWorkbookPICTURE_TYPE_JPEG));
byteArrayOutclose();
byteArrayOut = null;
}
pic = null;
}
} catch (final Exception e) {
eprintStackTrace();
}
}
}
final ByteArrayOutputStream os = new ByteArrayOutputStream();
try {
wbwrite(os);
} catch (final IOException e) {
eprintStackTrace();
}
final byte[] content = ostoByteArray();
final String url = VarBASE_URL+ Fileseparator + "outputxls";//读者自定义路径
final File file = new File(url);// Excel文件生成后存储的位置。
OutputStream fos = null;
try {
fos = new FileOutputStream(file);
foswrite(content);
osclose();
fosclose();
} catch (final Exception e) {
eprintStackTrace();
}
return url;//文件保存成功
以上就是关于poi5.2.2读取xls报错ole全部的内容,包括:poi5.2.2读取xls报错ole、基于Apache POI的Excel表格处理、使用poi读写excel等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)