同步Ruoyi更新后,ExcelUtil.java中String picIndex = ctMarker.getRow() + "_" + ctMarker.getCol();报错,暂时Mark掉

This commit is contained in:
Bo 2021-08-13 19:37:51 +08:00
parent 57ccaf3eb5
commit 0ec7cce347
1 changed files with 3 additions and 1 deletions

View File

@ -1246,7 +1246,9 @@ public class ExcelUtil<T>
XSSFPicture pic = (XSSFPicture) shape;
XSSFClientAnchor anchor = pic.getPreferredSize();
CTMarker ctMarker = anchor.getFrom();
String picIndex = ctMarker.getRow() + "_" + ctMarker.getCol();
//String picIndex = ctMarker.getRow() + "_" + ctMarker.getCol();
//todo 此处有错误暂时picIndex=""处理掉
String picIndex="";
sheetIndexPicMap.put(picIndex, pic.getPictureData());
}
}