ExcelUtil.java 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394
  1. package com.ruoyi.common.utils.poi;
  2. import java.io.File;
  3. import java.io.FileOutputStream;
  4. import java.io.IOException;
  5. import java.io.InputStream;
  6. import java.io.OutputStream;
  7. import java.lang.reflect.Field;
  8. import java.lang.reflect.Method;
  9. import java.math.BigDecimal;
  10. import java.text.DecimalFormat;
  11. import java.util.ArrayList;
  12. import java.util.Arrays;
  13. import java.util.Comparator;
  14. import java.util.Date;
  15. import java.util.HashMap;
  16. import java.util.List;
  17. import java.util.Map;
  18. import java.util.Set;
  19. import java.util.UUID;
  20. import java.util.stream.Collectors;
  21. import javax.servlet.http.HttpServletResponse;
  22. import org.apache.poi.hssf.usermodel.HSSFClientAnchor;
  23. import org.apache.poi.hssf.usermodel.HSSFPicture;
  24. import org.apache.poi.hssf.usermodel.HSSFPictureData;
  25. import org.apache.poi.hssf.usermodel.HSSFShape;
  26. import org.apache.poi.hssf.usermodel.HSSFSheet;
  27. import org.apache.poi.hssf.usermodel.HSSFWorkbook;
  28. import org.apache.poi.ooxml.POIXMLDocumentPart;
  29. import org.apache.poi.ss.usermodel.BorderStyle;
  30. import org.apache.poi.ss.usermodel.Cell;
  31. import org.apache.poi.ss.usermodel.CellStyle;
  32. import org.apache.poi.ss.usermodel.CellType;
  33. import org.apache.poi.ss.usermodel.ClientAnchor;
  34. import org.apache.poi.ss.usermodel.DataValidation;
  35. import org.apache.poi.ss.usermodel.DataValidationConstraint;
  36. import org.apache.poi.ss.usermodel.DataValidationHelper;
  37. import org.apache.poi.ss.usermodel.DateUtil;
  38. import org.apache.poi.ss.usermodel.Drawing;
  39. import org.apache.poi.ss.usermodel.FillPatternType;
  40. import org.apache.poi.ss.usermodel.Font;
  41. import org.apache.poi.ss.usermodel.HorizontalAlignment;
  42. import org.apache.poi.ss.usermodel.IndexedColors;
  43. import org.apache.poi.ss.usermodel.PictureData;
  44. import org.apache.poi.ss.usermodel.Row;
  45. import org.apache.poi.ss.usermodel.Sheet;
  46. import org.apache.poi.ss.usermodel.VerticalAlignment;
  47. import org.apache.poi.ss.usermodel.Workbook;
  48. import org.apache.poi.ss.usermodel.WorkbookFactory;
  49. import org.apache.poi.ss.util.CellRangeAddress;
  50. import org.apache.poi.ss.util.CellRangeAddressList;
  51. import org.apache.poi.util.IOUtils;
  52. import org.apache.poi.xssf.streaming.SXSSFWorkbook;
  53. import org.apache.poi.xssf.usermodel.XSSFClientAnchor;
  54. import org.apache.poi.xssf.usermodel.XSSFDataValidation;
  55. import org.apache.poi.xssf.usermodel.XSSFDrawing;
  56. import org.apache.poi.xssf.usermodel.XSSFPicture;
  57. import org.apache.poi.xssf.usermodel.XSSFShape;
  58. import org.apache.poi.xssf.usermodel.XSSFSheet;
  59. import org.apache.poi.xssf.usermodel.XSSFWorkbook;
  60. import org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker;
  61. import org.slf4j.Logger;
  62. import org.slf4j.LoggerFactory;
  63. import com.ruoyi.common.annotation.Excel;
  64. import com.ruoyi.common.annotation.Excel.ColumnType;
  65. import com.ruoyi.common.annotation.Excel.Type;
  66. import com.ruoyi.common.annotation.Excels;
  67. import com.ruoyi.common.config.RuoYiConfig;
  68. import com.ruoyi.common.core.domain.AjaxResult;
  69. import com.ruoyi.common.core.text.Convert;
  70. import com.ruoyi.common.exception.UtilException;
  71. import com.ruoyi.common.utils.DateUtils;
  72. import com.ruoyi.common.utils.DictUtils;
  73. import com.ruoyi.common.utils.StringUtils;
  74. import com.ruoyi.common.utils.file.FileTypeUtils;
  75. import com.ruoyi.common.utils.file.FileUtils;
  76. import com.ruoyi.common.utils.file.ImageUtils;
  77. import com.ruoyi.common.utils.reflect.ReflectUtils;
  78. /**
  79. * Excel相关处理
  80. *
  81. * @author ruoyi
  82. */
  83. public class ExcelUtil<T>
  84. {
  85. private static final Logger log = LoggerFactory.getLogger(ExcelUtil.class);
  86. /**
  87. * Excel sheet最大行数,默认65536
  88. */
  89. public static final int sheetSize = 65536;
  90. /**
  91. * 工作表名称
  92. */
  93. private String sheetName;
  94. /**
  95. * 导出类型(EXPORT:导出数据;IMPORT:导入模板)
  96. */
  97. private Type type;
  98. /**
  99. * 工作薄对象
  100. */
  101. private Workbook wb;
  102. /**
  103. * 工作表对象
  104. */
  105. private Sheet sheet;
  106. /**
  107. * 样式列表
  108. */
  109. private Map<String, CellStyle> styles;
  110. /**
  111. * 导入导出数据列表
  112. */
  113. private List<T> list;
  114. /**
  115. * 注解列表
  116. */
  117. private List<Object[]> fields;
  118. /**
  119. * 当前行号
  120. */
  121. private int rownum;
  122. /**
  123. * 标题
  124. */
  125. private String title;
  126. /**
  127. * 最大高度
  128. */
  129. private short maxHeight;
  130. /**
  131. * 统计列表
  132. */
  133. private Map<Integer, Double> statistics = new HashMap<Integer, Double>();
  134. /**
  135. * 数字格式
  136. */
  137. private static final DecimalFormat DOUBLE_FORMAT = new DecimalFormat("######0.00");
  138. /**
  139. * 实体对象
  140. */
  141. public Class<T> clazz;
  142. public ExcelUtil(Class<T> clazz)
  143. {
  144. this.clazz = clazz;
  145. }
  146. public void init(List<T> list, String sheetName, String title, Type type)
  147. {
  148. if (list == null)
  149. {
  150. list = new ArrayList<T>();
  151. }
  152. this.list = list;
  153. this.sheetName = sheetName;
  154. this.type = type;
  155. this.title = title;
  156. createExcelField();
  157. createWorkbook();
  158. createTitle();
  159. }
  160. /**
  161. * 创建excel第一行标题
  162. */
  163. public void createTitle()
  164. {
  165. if (StringUtils.isNotEmpty(title))
  166. {
  167. Row titleRow = sheet.createRow(rownum == 0 ? rownum++ : 0);
  168. titleRow.setHeightInPoints(30);
  169. Cell titleCell = titleRow.createCell(0);
  170. titleCell.setCellStyle(styles.get("title"));
  171. titleCell.setCellValue(title);
  172. sheet.addMergedRegion(new CellRangeAddress(titleRow.getRowNum(), titleRow.getRowNum(), titleRow.getRowNum(),
  173. this.fields.size() - 1));
  174. }
  175. }
  176. /**
  177. * 对excel表单默认第一个索引名转换成list
  178. *
  179. * @param is 输入流
  180. * @return 转换后集合
  181. */
  182. public List<T> importExcel(InputStream is) throws Exception
  183. {
  184. return importExcel(is, 0);
  185. }
  186. /**
  187. * 对excel表单默认第一个索引名转换成list
  188. *
  189. * @param is 输入流
  190. * @param titleNum 标题占用行数
  191. * @return 转换后集合
  192. */
  193. public List<T> importExcel(InputStream is, int titleNum) throws Exception
  194. {
  195. return importExcel(StringUtils.EMPTY, is, titleNum);
  196. }
  197. /**
  198. * 对excel表单指定表格索引名转换成list
  199. *
  200. * @param sheetName 表格索引名
  201. * @param titleNum 标题占用行数
  202. * @param is 输入流
  203. * @return 转换后集合
  204. */
  205. public List<T> importExcel(String sheetName, InputStream is, int titleNum) throws Exception
  206. {
  207. this.type = Type.IMPORT;
  208. this.wb = WorkbookFactory.create(is);
  209. List<T> list = new ArrayList<T>();
  210. // 如果指定sheet名,则取指定sheet中的内容 否则默认指向第1个sheet
  211. Sheet sheet = StringUtils.isNotEmpty(sheetName) ? wb.getSheet(sheetName) : wb.getSheetAt(0);
  212. if (sheet == null)
  213. {
  214. throw new IOException("文件sheet不存在");
  215. }
  216. boolean isXSSFWorkbook = !(wb instanceof HSSFWorkbook);
  217. Map<String, PictureData> pictures;
  218. if (isXSSFWorkbook)
  219. {
  220. pictures = getSheetPictures07((XSSFSheet) sheet, (XSSFWorkbook) wb);
  221. }
  222. else
  223. {
  224. pictures = getSheetPictures03((HSSFSheet) sheet, (HSSFWorkbook) wb);
  225. }
  226. // 获取最后一个非空行的行下标,比如总行数为n,则返回的为n-1
  227. int rows = sheet.getLastRowNum();
  228. if (rows > 0)
  229. {
  230. // 定义一个map用于存放excel列的序号和field.
  231. Map<String, Integer> cellMap = new HashMap<String, Integer>();
  232. // 获取表头
  233. Row heard = sheet.getRow(titleNum);
  234. for (int i = 0; i < heard.getPhysicalNumberOfCells(); i++)
  235. {
  236. Cell cell = heard.getCell(i);
  237. if (StringUtils.isNotNull(cell))
  238. {
  239. String value = this.getCellValue(heard, i).toString();
  240. cellMap.put(value, i);
  241. }
  242. else
  243. {
  244. cellMap.put(null, i);
  245. }
  246. }
  247. // 有数据时才处理 得到类的所有field.
  248. Field[] allFields = clazz.getDeclaredFields();
  249. // 定义一个map用于存放列的序号和field.
  250. Map<Integer, Field> fieldsMap = new HashMap<Integer, Field>();
  251. for (int col = 0; col < allFields.length; col++)
  252. {
  253. Field field = allFields[col];
  254. Excel attr = field.getAnnotation(Excel.class);
  255. if (attr != null && (attr.type() == Type.ALL || attr.type() == type))
  256. {
  257. // 设置类的私有字段属性可访问.
  258. field.setAccessible(true);
  259. Integer column = cellMap.get(attr.name());
  260. if (column != null)
  261. {
  262. fieldsMap.put(column, field);
  263. }
  264. }
  265. }
  266. for (int i = titleNum + 1; i <= rows; i++)
  267. {
  268. // 从第2行开始取数据,默认第一行是表头.
  269. Row row = sheet.getRow(i);
  270. // 判断当前行是否是空行
  271. if (isRowEmpty(row))
  272. {
  273. continue;
  274. }
  275. T entity = null;
  276. for (Map.Entry<Integer, Field> entry : fieldsMap.entrySet())
  277. {
  278. Object val = this.getCellValue(row, entry.getKey());
  279. // 如果不存在实例则新建.
  280. entity = (entity == null ? clazz.newInstance() : entity);
  281. // 从map中得到对应列的field.
  282. Field field = fieldsMap.get(entry.getKey());
  283. // 取得类型,并根据对象类型设置值.
  284. Class<?> fieldType = field.getType();
  285. if (String.class == fieldType)
  286. {
  287. String s = Convert.toStr(val);
  288. if (StringUtils.endsWith(s, ".0"))
  289. {
  290. val = StringUtils.substringBefore(s, ".0");
  291. }
  292. else
  293. {
  294. String dateFormat = field.getAnnotation(Excel.class).dateFormat();
  295. if (StringUtils.isNotEmpty(dateFormat))
  296. {
  297. val = DateUtils.parseDateToStr(dateFormat, (Date) val);
  298. }
  299. else
  300. {
  301. val = Convert.toStr(val);
  302. }
  303. }
  304. }
  305. else if ((Integer.TYPE == fieldType || Integer.class == fieldType) && StringUtils.isNumeric(Convert.toStr(val)))
  306. {
  307. val = Convert.toInt(val);
  308. }
  309. else if (Long.TYPE == fieldType || Long.class == fieldType)
  310. {
  311. val = Convert.toLong(val);
  312. }
  313. else if (Double.TYPE == fieldType || Double.class == fieldType)
  314. {
  315. val = Convert.toDouble(val);
  316. }
  317. else if (Float.TYPE == fieldType || Float.class == fieldType)
  318. {
  319. val = Convert.toFloat(val);
  320. }
  321. else if (BigDecimal.class == fieldType)
  322. {
  323. val = Convert.toBigDecimal(val);
  324. }
  325. else if (Date.class == fieldType)
  326. {
  327. if (val instanceof String)
  328. {
  329. val = DateUtils.parseDate(val);
  330. }
  331. else if (val instanceof Double)
  332. {
  333. val = DateUtil.getJavaDate((Double) val);
  334. }
  335. }
  336. else if (Boolean.TYPE == fieldType || Boolean.class == fieldType)
  337. {
  338. val = Convert.toBool(val, false);
  339. }
  340. if (StringUtils.isNotNull(fieldType))
  341. {
  342. Excel attr = field.getAnnotation(Excel.class);
  343. String propertyName = field.getName();
  344. if (StringUtils.isNotEmpty(attr.targetAttr()))
  345. {
  346. propertyName = field.getName() + "." + attr.targetAttr();
  347. }
  348. else if (StringUtils.isNotEmpty(attr.readConverterExp()))
  349. {
  350. val = reverseByExp(Convert.toStr(val), attr.readConverterExp(), attr.separator());
  351. }
  352. else if (StringUtils.isNotEmpty(attr.dictType()))
  353. {
  354. val = reverseDictByExp(Convert.toStr(val), attr.dictType(), attr.separator());
  355. }
  356. else if (!attr.handler().equals(ExcelHandlerAdapter.class))
  357. {
  358. val = dataFormatHandlerAdapter(val, attr);
  359. }
  360. else if (ColumnType.IMAGE == attr.cellType() && StringUtils.isNotEmpty(pictures))
  361. {
  362. PictureData image = pictures.get(row.getRowNum() + "_" + entry.getKey());
  363. if (image == null)
  364. {
  365. val = "";
  366. }
  367. else
  368. {
  369. byte[] data = image.getData();
  370. val = FileUtils.writeImportBytes(data);
  371. }
  372. }
  373. ReflectUtils.invokeSetter(entity, propertyName, val);
  374. }
  375. }
  376. list.add(entity);
  377. }
  378. }
  379. return list;
  380. }
  381. /**
  382. * 对list数据源将其里面的数据导入到excel表单
  383. *
  384. * @param list 导出数据集合
  385. * @param sheetName 工作表的名称
  386. * @return 结果
  387. */
  388. public AjaxResult exportExcel(List<T> list, String sheetName)
  389. {
  390. return exportExcel(list, sheetName, StringUtils.EMPTY);
  391. }
  392. /**
  393. * 对list数据源将其里面的数据导入到excel表单
  394. *
  395. * @param list 导出数据集合
  396. * @param sheetName 工作表的名称
  397. * @param title 标题
  398. * @return 结果
  399. */
  400. public AjaxResult exportExcel(List<T> list, String sheetName, String title)
  401. {
  402. this.init(list, sheetName, title, Type.EXPORT);
  403. return exportExcel();
  404. }
  405. /**
  406. * 对list数据源将其里面的数据导入到excel表单
  407. *
  408. * @param response 返回数据
  409. * @param list 导出数据集合
  410. * @param sheetName 工作表的名称
  411. * @return 结果
  412. * @throws IOException
  413. */
  414. public void exportExcel(HttpServletResponse response, List<T> list, String sheetName)throws IOException
  415. {
  416. exportExcel(response, list, sheetName, StringUtils.EMPTY);
  417. }
  418. /**
  419. * 对list数据源将其里面的数据导入到excel表单
  420. *
  421. * @param response 返回数据
  422. * @param list 导出数据集合
  423. * @param sheetName 工作表的名称
  424. * @param title 标题
  425. * @return 结果
  426. * @throws IOException
  427. */
  428. public void exportExcel(HttpServletResponse response, List<T> list, String sheetName, String title) throws IOException
  429. {
  430. response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
  431. response.setCharacterEncoding("utf-8");
  432. this.init(list, sheetName, title, Type.EXPORT);
  433. exportExcel(response.getOutputStream());
  434. }
  435. /**
  436. * 对list数据源将其里面的数据导入到excel表单
  437. *
  438. * @param sheetName 工作表的名称
  439. * @return 结果
  440. */
  441. public AjaxResult importTemplateExcel(String sheetName)
  442. {
  443. return importTemplateExcel(sheetName, StringUtils.EMPTY);
  444. }
  445. /**
  446. * 对list数据源将其里面的数据导入到excel表单
  447. *
  448. * @param sheetName 工作表的名称
  449. * @param title 标题
  450. * @return 结果
  451. */
  452. public AjaxResult importTemplateExcel(String sheetName, String title)
  453. {
  454. this.init(null, sheetName, title, Type.IMPORT);
  455. return exportExcel();
  456. }
  457. /**
  458. * 对list数据源将其里面的数据导入到excel表单
  459. *
  460. * @param sheetName 工作表的名称
  461. * @return 结果
  462. */
  463. public void importTemplateExcel(HttpServletResponse response, String sheetName) throws IOException
  464. {
  465. importTemplateExcel(response, sheetName, StringUtils.EMPTY);
  466. }
  467. /**
  468. * 对list数据源将其里面的数据导入到excel表单
  469. *
  470. * @param sheetName 工作表的名称
  471. * @param title 标题
  472. * @return 结果
  473. */
  474. public void importTemplateExcel(HttpServletResponse response, String sheetName, String title) throws IOException
  475. {
  476. response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
  477. response.setCharacterEncoding("utf-8");
  478. this.init(null, sheetName, title, Type.IMPORT);
  479. exportExcel(response.getOutputStream());
  480. }
  481. /**
  482. * 对list数据源将其里面的数据导入到excel表单
  483. *
  484. * @return 结果
  485. */
  486. public void exportExcel(OutputStream out)
  487. {
  488. try
  489. {
  490. writeSheet();
  491. wb.write(out);
  492. }
  493. catch (Exception e)
  494. {
  495. log.error("导出Excel异常{}", e.getMessage());
  496. }
  497. finally
  498. {
  499. IOUtils.closeQuietly(wb);
  500. IOUtils.closeQuietly(out);
  501. }
  502. }
  503. /**
  504. * 对list数据源将其里面的数据导入到excel表单
  505. *
  506. * @return 结果
  507. */
  508. public AjaxResult exportExcel()
  509. {
  510. OutputStream out = null;
  511. try
  512. {
  513. writeSheet();
  514. String filename = encodingFilename(sheetName);
  515. out = new FileOutputStream(getAbsoluteFile(filename));
  516. wb.write(out);
  517. return AjaxResult.success(filename);
  518. }
  519. catch (Exception e)
  520. {
  521. log.error("导出Excel异常{}", e.getMessage());
  522. throw new UtilException("导出Excel失败,请联系网站管理员!");
  523. }
  524. finally
  525. {
  526. IOUtils.closeQuietly(wb);
  527. IOUtils.closeQuietly(out);
  528. }
  529. }
  530. /**
  531. * 创建写入数据到Sheet
  532. */
  533. public void writeSheet()
  534. {
  535. // 取出一共有多少个sheet.
  536. int sheetNo = Math.max(1, (int) Math.ceil(list.size() * 1.0 / sheetSize));
  537. for (int index = 0; index < sheetNo; index++)
  538. {
  539. createSheet(sheetNo, index);
  540. // 产生一行
  541. Row row = sheet.createRow(rownum);
  542. int column = 0;
  543. // 写入各个字段的列头名称
  544. for (Object[] os : fields)
  545. {
  546. Excel excel = (Excel) os[1];
  547. this.createCell(excel, row, column++);
  548. }
  549. if (Type.EXPORT.equals(type))
  550. {
  551. fillExcelData(index, row);
  552. addStatisticsRow();
  553. }
  554. }
  555. }
  556. /**
  557. * 填充excel数据
  558. *
  559. * @param index 序号
  560. * @param row 单元格行
  561. */
  562. public void fillExcelData(int index, Row row)
  563. {
  564. int startNo = index * sheetSize;
  565. int endNo = Math.min(startNo + sheetSize, list.size());
  566. for (int i = startNo; i < endNo; i++)
  567. {
  568. row = sheet.createRow(i + 1 + rownum - startNo);
  569. // 得到导出对象.
  570. T vo = (T) list.get(i);
  571. int column = 0;
  572. for (Object[] os : fields)
  573. {
  574. Field field = (Field) os[0];
  575. Excel excel = (Excel) os[1];
  576. // 设置实体类私有属性可访问
  577. field.setAccessible(true);
  578. this.addCell(excel, row, vo, field, column++);
  579. }
  580. }
  581. }
  582. /**
  583. * 创建表格样式
  584. *
  585. * @param wb 工作薄对象
  586. * @return 样式列表
  587. */
  588. private Map<String, CellStyle> createStyles(Workbook wb)
  589. {
  590. // 写入各条记录,每条记录对应excel表中的一行
  591. Map<String, CellStyle> styles = new HashMap<String, CellStyle>();
  592. CellStyle style = wb.createCellStyle();
  593. style.setAlignment(HorizontalAlignment.CENTER);
  594. style.setVerticalAlignment(VerticalAlignment.CENTER);
  595. Font titleFont = wb.createFont();
  596. titleFont.setFontName("Arial");
  597. titleFont.setFontHeightInPoints((short) 16);
  598. titleFont.setBold(true);
  599. style.setFont(titleFont);
  600. styles.put("title", style);
  601. style = wb.createCellStyle();
  602. style.setAlignment(HorizontalAlignment.CENTER);
  603. style.setVerticalAlignment(VerticalAlignment.CENTER);
  604. style.setBorderRight(BorderStyle.THIN);
  605. style.setRightBorderColor(IndexedColors.GREY_50_PERCENT.getIndex());
  606. style.setBorderLeft(BorderStyle.THIN);
  607. style.setLeftBorderColor(IndexedColors.GREY_50_PERCENT.getIndex());
  608. style.setBorderTop(BorderStyle.THIN);
  609. style.setTopBorderColor(IndexedColors.GREY_50_PERCENT.getIndex());
  610. style.setBorderBottom(BorderStyle.THIN);
  611. style.setBottomBorderColor(IndexedColors.GREY_50_PERCENT.getIndex());
  612. Font dataFont = wb.createFont();
  613. dataFont.setFontName("Arial");
  614. dataFont.setFontHeightInPoints((short) 10);
  615. style.setFont(dataFont);
  616. styles.put("data", style);
  617. style = wb.createCellStyle();
  618. style.cloneStyleFrom(styles.get("data"));
  619. style.setAlignment(HorizontalAlignment.CENTER);
  620. style.setVerticalAlignment(VerticalAlignment.CENTER);
  621. style.setFillForegroundColor(IndexedColors.GREY_50_PERCENT.getIndex());
  622. style.setFillPattern(FillPatternType.SOLID_FOREGROUND);
  623. Font headerFont = wb.createFont();
  624. headerFont.setFontName("Arial");
  625. headerFont.setFontHeightInPoints((short) 10);
  626. headerFont.setBold(true);
  627. headerFont.setColor(IndexedColors.WHITE.getIndex());
  628. style.setFont(headerFont);
  629. styles.put("header", style);
  630. style = wb.createCellStyle();
  631. style.setAlignment(HorizontalAlignment.CENTER);
  632. style.setVerticalAlignment(VerticalAlignment.CENTER);
  633. Font totalFont = wb.createFont();
  634. totalFont.setFontName("Arial");
  635. totalFont.setFontHeightInPoints((short) 10);
  636. style.setFont(totalFont);
  637. styles.put("total", style);
  638. style = wb.createCellStyle();
  639. style.cloneStyleFrom(styles.get("data"));
  640. style.setAlignment(HorizontalAlignment.LEFT);
  641. styles.put("data1", style);
  642. style = wb.createCellStyle();
  643. style.cloneStyleFrom(styles.get("data"));
  644. style.setAlignment(HorizontalAlignment.CENTER);
  645. styles.put("data2", style);
  646. style = wb.createCellStyle();
  647. style.cloneStyleFrom(styles.get("data"));
  648. style.setAlignment(HorizontalAlignment.RIGHT);
  649. styles.put("data3", style);
  650. return styles;
  651. }
  652. /**
  653. * 创建单元格
  654. */
  655. public Cell createCell(Excel attr, Row row, int column)
  656. {
  657. // 创建列
  658. Cell cell = row.createCell(column);
  659. // 写入列信息
  660. cell.setCellValue(attr.name());
  661. setDataValidation(attr, row, column);
  662. cell.setCellStyle(styles.get("header"));
  663. return cell;
  664. }
  665. /**
  666. * 设置单元格信息
  667. *
  668. * @param value 单元格值
  669. * @param attr 注解相关
  670. * @param cell 单元格信息
  671. */
  672. public void setCellVo(Object value, Excel attr, Cell cell)
  673. {
  674. if (ColumnType.STRING == attr.cellType())
  675. {
  676. cell.setCellValue(StringUtils.isNull(value) ? attr.defaultValue() : value + attr.suffix());
  677. }
  678. else if (ColumnType.NUMERIC == attr.cellType())
  679. {
  680. if (StringUtils.isNotNull(value))
  681. {
  682. cell.setCellValue(StringUtils.contains(Convert.toStr(value), ".") ? Convert.toDouble(value) : Convert.toInt(value));
  683. }
  684. }
  685. else if (ColumnType.IMAGE == attr.cellType())
  686. {
  687. ClientAnchor anchor = new XSSFClientAnchor(0, 0, 0, 0, (short) cell.getColumnIndex(), cell.getRow().getRowNum(), (short) (cell.getColumnIndex() + 1), cell.getRow().getRowNum() + 1);
  688. String imagePath = Convert.toStr(value);
  689. if (StringUtils.isNotEmpty(imagePath))
  690. {
  691. byte[] data = ImageUtils.getImage(imagePath);
  692. getDrawingPatriarch(cell.getSheet()).createPicture(anchor,
  693. cell.getSheet().getWorkbook().addPicture(data, getImageType(data)));
  694. }
  695. }
  696. }
  697. /**
  698. * 获取画布
  699. */
  700. public static Drawing<?> getDrawingPatriarch(Sheet sheet)
  701. {
  702. if (sheet.getDrawingPatriarch() == null)
  703. {
  704. sheet.createDrawingPatriarch();
  705. }
  706. return sheet.getDrawingPatriarch();
  707. }
  708. /**
  709. * 获取图片类型,设置图片插入类型
  710. */
  711. public int getImageType(byte[] value)
  712. {
  713. String type = FileTypeUtils.getFileExtendName(value);
  714. if ("JPG".equalsIgnoreCase(type))
  715. {
  716. return Workbook.PICTURE_TYPE_JPEG;
  717. }
  718. else if ("PNG".equalsIgnoreCase(type))
  719. {
  720. return Workbook.PICTURE_TYPE_PNG;
  721. }
  722. return Workbook.PICTURE_TYPE_JPEG;
  723. }
  724. /**
  725. * 创建表格样式
  726. */
  727. public void setDataValidation(Excel attr, Row row, int column)
  728. {
  729. if (attr.name().indexOf("注:") >= 0)
  730. {
  731. sheet.setColumnWidth(column, 6000);
  732. }
  733. else
  734. {
  735. // 设置列宽
  736. sheet.setColumnWidth(column, (int) ((attr.width() + 0.72) * 256));
  737. }
  738. // 如果设置了提示信息则鼠标放上去提示.
  739. if (StringUtils.isNotEmpty(attr.prompt()))
  740. {
  741. // 这里默认设了2-101列提示.
  742. setXSSFPrompt(sheet, "", attr.prompt(), 1, 100, column, column);
  743. }
  744. // 如果设置了combo属性则本列只能选择不能输入
  745. if (attr.combo().length > 0)
  746. {
  747. // 这里默认设了2-101列只能选择不能输入.
  748. setXSSFValidation(sheet, attr.combo(), 1, 100, column, column);
  749. }
  750. }
  751. /**
  752. * 添加单元格
  753. */
  754. public Cell addCell(Excel attr, Row row, T vo, Field field, int column)
  755. {
  756. Cell cell = null;
  757. try
  758. {
  759. // 设置行高
  760. row.setHeight(maxHeight);
  761. // 根据Excel中设置情况决定是否导出,有些情况需要保持为空,希望用户填写这一列.
  762. if (attr.isExport())
  763. {
  764. // 创建cell
  765. cell = row.createCell(column);
  766. int align = attr.align().value();
  767. cell.setCellStyle(styles.get("data" + (align >= 1 && align <= 3 ? align : "")));
  768. // 用于读取对象中的属性
  769. Object value = getTargetValue(vo, field, attr);
  770. String dateFormat = attr.dateFormat();
  771. String readConverterExp = attr.readConverterExp();
  772. String separator = attr.separator();
  773. String dictType = attr.dictType();
  774. if (StringUtils.isNotEmpty(dateFormat) && StringUtils.isNotNull(value))
  775. {
  776. cell.setCellValue(DateUtils.parseDateToStr(dateFormat, (Date) value));
  777. }
  778. else if (StringUtils.isNotEmpty(readConverterExp) && StringUtils.isNotNull(value))
  779. {
  780. cell.setCellValue(convertByExp(Convert.toStr(value), readConverterExp, separator));
  781. }
  782. else if (StringUtils.isNotEmpty(dictType) && StringUtils.isNotNull(value))
  783. {
  784. cell.setCellValue(convertDictByExp(Convert.toStr(value), dictType, separator));
  785. }
  786. else if (value instanceof BigDecimal && -1 != attr.scale())
  787. {
  788. cell.setCellValue((((BigDecimal) value).setScale(attr.scale(), attr.roundingMode())).toString());
  789. }
  790. else if (!attr.handler().equals(ExcelHandlerAdapter.class))
  791. {
  792. cell.setCellValue(dataFormatHandlerAdapter(value, attr));
  793. }
  794. else
  795. {
  796. // 设置列类型
  797. setCellVo(value, attr, cell);
  798. }
  799. addStatisticsData(column, Convert.toStr(value), attr);
  800. }
  801. }
  802. catch (Exception e)
  803. {
  804. log.error("导出Excel失败{}", e);
  805. }
  806. return cell;
  807. }
  808. /**
  809. * 设置 POI XSSFSheet 单元格提示
  810. *
  811. * @param sheet 表单
  812. * @param promptTitle 提示标题
  813. * @param promptContent 提示内容
  814. * @param firstRow 开始行
  815. * @param endRow 结束行
  816. * @param firstCol 开始列
  817. * @param endCol 结束列
  818. */
  819. public void setXSSFPrompt(Sheet sheet, String promptTitle, String promptContent, int firstRow, int endRow,
  820. int firstCol, int endCol)
  821. {
  822. DataValidationHelper helper = sheet.getDataValidationHelper();
  823. DataValidationConstraint constraint = helper.createCustomConstraint("DD1");
  824. CellRangeAddressList regions = new CellRangeAddressList(firstRow, endRow, firstCol, endCol);
  825. DataValidation dataValidation = helper.createValidation(constraint, regions);
  826. dataValidation.createPromptBox(promptTitle, promptContent);
  827. dataValidation.setShowPromptBox(true);
  828. sheet.addValidationData(dataValidation);
  829. }
  830. /**
  831. * 设置某些列的值只能输入预制的数据,显示下拉框.
  832. *
  833. * @param sheet 要设置的sheet.
  834. * @param textlist 下拉框显示的内容
  835. * @param firstRow 开始行
  836. * @param endRow 结束行
  837. * @param firstCol 开始列
  838. * @param endCol 结束列
  839. * @return 设置好的sheet.
  840. */
  841. public void setXSSFValidation(Sheet sheet, String[] textlist, int firstRow, int endRow, int firstCol, int endCol)
  842. {
  843. DataValidationHelper helper = sheet.getDataValidationHelper();
  844. // 加载下拉列表内容
  845. DataValidationConstraint constraint = helper.createExplicitListConstraint(textlist);
  846. // 设置数据有效性加载在哪个单元格上,四个参数分别是:起始行、终止行、起始列、终止列
  847. CellRangeAddressList regions = new CellRangeAddressList(firstRow, endRow, firstCol, endCol);
  848. // 数据有效性对象
  849. DataValidation dataValidation = helper.createValidation(constraint, regions);
  850. // 处理Excel兼容性问题
  851. if (dataValidation instanceof XSSFDataValidation)
  852. {
  853. dataValidation.setSuppressDropDownArrow(true);
  854. dataValidation.setShowErrorBox(true);
  855. }
  856. else
  857. {
  858. dataValidation.setSuppressDropDownArrow(false);
  859. }
  860. sheet.addValidationData(dataValidation);
  861. }
  862. /**
  863. * 解析导出值 0=男,1=女,2=未知
  864. *
  865. * @param propertyValue 参数值
  866. * @param converterExp 翻译注解
  867. * @param separator 分隔符
  868. * @return 解析后值
  869. */
  870. public static String convertByExp(String propertyValue, String converterExp, String separator)
  871. {
  872. StringBuilder propertyString = new StringBuilder();
  873. String[] convertSource = converterExp.split(",");
  874. for (String item : convertSource)
  875. {
  876. String[] itemArray = item.split("=");
  877. if (StringUtils.containsAny(separator, propertyValue))
  878. {
  879. for (String value : propertyValue.split(separator))
  880. {
  881. if (itemArray[0].equals(value))
  882. {
  883. propertyString.append(itemArray[1] + separator);
  884. break;
  885. }
  886. }
  887. }
  888. else
  889. {
  890. if (itemArray[0].equals(propertyValue))
  891. {
  892. return itemArray[1];
  893. }
  894. }
  895. }
  896. return StringUtils.stripEnd(propertyString.toString(), separator);
  897. }
  898. /**
  899. * 反向解析值 男=0,女=1,未知=2
  900. *
  901. * @param propertyValue 参数值
  902. * @param converterExp 翻译注解
  903. * @param separator 分隔符
  904. * @return 解析后值
  905. */
  906. public static String reverseByExp(String propertyValue, String converterExp, String separator)
  907. {
  908. StringBuilder propertyString = new StringBuilder();
  909. String[] convertSource = converterExp.split(",");
  910. for (String item : convertSource)
  911. {
  912. String[] itemArray = item.split("=");
  913. if (StringUtils.containsAny(separator, propertyValue))
  914. {
  915. for (String value : propertyValue.split(separator))
  916. {
  917. if (itemArray[1].equals(value))
  918. {
  919. propertyString.append(itemArray[0] + separator);
  920. break;
  921. }
  922. }
  923. }
  924. else
  925. {
  926. if (itemArray[1].equals(propertyValue))
  927. {
  928. return itemArray[0];
  929. }
  930. }
  931. }
  932. return StringUtils.stripEnd(propertyString.toString(), separator);
  933. }
  934. /**
  935. * 解析字典值
  936. *
  937. * @param dictValue 字典值
  938. * @param dictType 字典类型
  939. * @param separator 分隔符
  940. * @return 字典标签
  941. */
  942. public static String convertDictByExp(String dictValue, String dictType, String separator)
  943. {
  944. return DictUtils.getDictLabel(dictType, dictValue, separator);
  945. }
  946. /**
  947. * 反向解析值字典值
  948. *
  949. * @param dictLabel 字典标签
  950. * @param dictType 字典类型
  951. * @param separator 分隔符
  952. * @return 字典值
  953. */
  954. public static String reverseDictByExp(String dictLabel, String dictType, String separator)
  955. {
  956. return DictUtils.getDictValue(dictType, dictLabel, separator);
  957. }
  958. /**
  959. * 数据处理器
  960. *
  961. * @param value 数据值
  962. * @param excel 数据注解
  963. * @return
  964. */
  965. public String dataFormatHandlerAdapter(Object value, Excel excel)
  966. {
  967. try
  968. {
  969. Object instance = excel.handler().newInstance();
  970. Method formatMethod = excel.handler().getMethod("format", new Class[] { Object.class, String[].class });
  971. value = formatMethod.invoke(instance, value, excel.args());
  972. }
  973. catch (Exception e)
  974. {
  975. log.error("不能格式化数据 " + excel.handler(), e.getMessage());
  976. }
  977. return Convert.toStr(value);
  978. }
  979. /**
  980. * 合计统计信息
  981. */
  982. private void addStatisticsData(Integer index, String text, Excel entity)
  983. {
  984. if (entity != null && entity.isStatistics())
  985. {
  986. Double temp = 0D;
  987. if (!statistics.containsKey(index))
  988. {
  989. statistics.put(index, temp);
  990. }
  991. try
  992. {
  993. temp = Double.valueOf(text);
  994. }
  995. catch (NumberFormatException e)
  996. {
  997. }
  998. statistics.put(index, statistics.get(index) + temp);
  999. }
  1000. }
  1001. /**
  1002. * 创建统计行
  1003. */
  1004. public void addStatisticsRow()
  1005. {
  1006. if (statistics.size() > 0)
  1007. {
  1008. Row row = sheet.createRow(sheet.getLastRowNum() + 1);
  1009. Set<Integer> keys = statistics.keySet();
  1010. Cell cell = row.createCell(0);
  1011. cell.setCellStyle(styles.get("total"));
  1012. cell.setCellValue("合计");
  1013. for (Integer key : keys)
  1014. {
  1015. cell = row.createCell(key);
  1016. cell.setCellStyle(styles.get("total"));
  1017. cell.setCellValue(DOUBLE_FORMAT.format(statistics.get(key)));
  1018. }
  1019. statistics.clear();
  1020. }
  1021. }
  1022. /**
  1023. * 编码文件名
  1024. */
  1025. public String encodingFilename(String filename)
  1026. {
  1027. filename = UUID.randomUUID().toString() + "_" + filename + ".xlsx";
  1028. return filename;
  1029. }
  1030. /**
  1031. * 获取下载路径
  1032. *
  1033. * @param filename 文件名称
  1034. */
  1035. public String getAbsoluteFile(String filename)
  1036. {
  1037. String downloadPath = RuoYiConfig.getDownloadPath() + filename;
  1038. File desc = new File(downloadPath);
  1039. if (!desc.getParentFile().exists())
  1040. {
  1041. desc.getParentFile().mkdirs();
  1042. }
  1043. return downloadPath;
  1044. }
  1045. /**
  1046. * 获取bean中的属性值
  1047. *
  1048. * @param vo 实体对象
  1049. * @param field 字段
  1050. * @param excel 注解
  1051. * @return 最终的属性值
  1052. * @throws Exception
  1053. */
  1054. private Object getTargetValue(T vo, Field field, Excel excel) throws Exception
  1055. {
  1056. Object o = field.get(vo);
  1057. if (StringUtils.isNotEmpty(excel.targetAttr()))
  1058. {
  1059. String target = excel.targetAttr();
  1060. if (target.indexOf(".") > -1)
  1061. {
  1062. String[] targets = target.split("[.]");
  1063. for (String name : targets)
  1064. {
  1065. o = getValue(o, name);
  1066. }
  1067. }
  1068. else
  1069. {
  1070. o = getValue(o, target);
  1071. }
  1072. }
  1073. return o;
  1074. }
  1075. /**
  1076. * 以类的属性的get方法方法形式获取值
  1077. *
  1078. * @param o
  1079. * @param name
  1080. * @return value
  1081. * @throws Exception
  1082. */
  1083. private Object getValue(Object o, String name) throws Exception
  1084. {
  1085. if (StringUtils.isNotNull(o) && StringUtils.isNotEmpty(name))
  1086. {
  1087. Class<?> clazz = o.getClass();
  1088. Field field = clazz.getDeclaredField(name);
  1089. field.setAccessible(true);
  1090. o = field.get(o);
  1091. }
  1092. return o;
  1093. }
  1094. /**
  1095. * 得到所有定义字段
  1096. */
  1097. private void createExcelField()
  1098. {
  1099. this.fields = new ArrayList<Object[]>();
  1100. List<Field> tempFields = new ArrayList<>();
  1101. tempFields.addAll(Arrays.asList(clazz.getSuperclass().getDeclaredFields()));
  1102. tempFields.addAll(Arrays.asList(clazz.getDeclaredFields()));
  1103. for (Field field : tempFields)
  1104. {
  1105. // 单注解
  1106. if (field.isAnnotationPresent(Excel.class))
  1107. {
  1108. putToField(field, field.getAnnotation(Excel.class));
  1109. }
  1110. // 多注解
  1111. if (field.isAnnotationPresent(Excels.class))
  1112. {
  1113. Excels attrs = field.getAnnotation(Excels.class);
  1114. Excel[] excels = attrs.value();
  1115. for (Excel excel : excels)
  1116. {
  1117. putToField(field, excel);
  1118. }
  1119. }
  1120. }
  1121. this.fields = this.fields.stream().sorted(Comparator.comparing(objects -> ((Excel) objects[1]).sort())).collect(Collectors.toList());
  1122. this.maxHeight = getRowHeight();
  1123. }
  1124. /**
  1125. * 根据注解获取最大行高
  1126. */
  1127. public short getRowHeight()
  1128. {
  1129. double maxHeight = 0;
  1130. for (Object[] os : this.fields)
  1131. {
  1132. Excel excel = (Excel) os[1];
  1133. maxHeight = maxHeight > excel.height() ? maxHeight : excel.height();
  1134. }
  1135. return (short) (maxHeight * 20);
  1136. }
  1137. /**
  1138. * 放到字段集合中
  1139. */
  1140. private void putToField(Field field, Excel attr)
  1141. {
  1142. if (attr != null && (attr.type() == Type.ALL || attr.type() == type))
  1143. {
  1144. this.fields.add(new Object[] { field, attr });
  1145. }
  1146. }
  1147. /**
  1148. * 创建一个工作簿
  1149. */
  1150. public void createWorkbook()
  1151. {
  1152. this.wb = new SXSSFWorkbook(500);
  1153. this.sheet = wb.createSheet();
  1154. wb.setSheetName(0, sheetName);
  1155. this.styles = createStyles(wb);
  1156. }
  1157. /**
  1158. * 创建工作表
  1159. *
  1160. * @param sheetNo sheet数量
  1161. * @param index 序号
  1162. */
  1163. public void createSheet(int sheetNo, int index)
  1164. {
  1165. // 设置工作表的名称.
  1166. if (sheetNo > 1 && index > 0)
  1167. {
  1168. this.sheet = wb.createSheet();
  1169. this.createTitle();
  1170. wb.setSheetName(index, sheetName + index);
  1171. }
  1172. }
  1173. /**
  1174. * 获取单元格值
  1175. *
  1176. * @param row 获取的行
  1177. * @param column 获取单元格列号
  1178. * @return 单元格值
  1179. */
  1180. public Object getCellValue(Row row, int column)
  1181. {
  1182. if (row == null)
  1183. {
  1184. return row;
  1185. }
  1186. Object val = "";
  1187. try
  1188. {
  1189. Cell cell = row.getCell(column);
  1190. if (StringUtils.isNotNull(cell))
  1191. {
  1192. if (cell.getCellType() == CellType.NUMERIC || cell.getCellType() == CellType.FORMULA)
  1193. {
  1194. val = cell.getNumericCellValue();
  1195. if (DateUtil.isCellDateFormatted(cell))
  1196. {
  1197. val = DateUtil.getJavaDate((Double) val); // POI Excel 日期格式转换
  1198. }
  1199. else
  1200. {
  1201. if ((Double) val % 1 != 0)
  1202. {
  1203. val = new BigDecimal(val.toString());
  1204. }
  1205. else
  1206. {
  1207. val = new DecimalFormat("0").format(val);
  1208. }
  1209. }
  1210. }
  1211. else if (cell.getCellType() == CellType.STRING)
  1212. {
  1213. val = cell.getStringCellValue();
  1214. }
  1215. else if (cell.getCellType() == CellType.BOOLEAN)
  1216. {
  1217. val = cell.getBooleanCellValue();
  1218. }
  1219. else if (cell.getCellType() == CellType.ERROR)
  1220. {
  1221. val = cell.getErrorCellValue();
  1222. }
  1223. }
  1224. }
  1225. catch (Exception e)
  1226. {
  1227. return val;
  1228. }
  1229. return val;
  1230. }
  1231. /**
  1232. * 判断是否是空行
  1233. *
  1234. * @param row 判断的行
  1235. * @return
  1236. */
  1237. private boolean isRowEmpty(Row row)
  1238. {
  1239. if (row == null)
  1240. {
  1241. return true;
  1242. }
  1243. for (int i = row.getFirstCellNum(); i < row.getLastCellNum(); i++)
  1244. {
  1245. Cell cell = row.getCell(i);
  1246. if (cell != null && cell.getCellType() != CellType.BLANK)
  1247. {
  1248. return false;
  1249. }
  1250. }
  1251. return true;
  1252. }
  1253. /**
  1254. * 获取Excel2003图片
  1255. *
  1256. * @param sheet 当前sheet对象
  1257. * @param workbook 工作簿对象
  1258. * @return Map key:图片单元格索引(1_1)String,value:图片流PictureData
  1259. */
  1260. public static Map<String, PictureData> getSheetPictures03(HSSFSheet sheet, HSSFWorkbook workbook)
  1261. {
  1262. Map<String, PictureData> sheetIndexPicMap = new HashMap<String, PictureData>();
  1263. List<HSSFPictureData> pictures = workbook.getAllPictures();
  1264. if (!pictures.isEmpty())
  1265. {
  1266. for (HSSFShape shape : sheet.getDrawingPatriarch().getChildren())
  1267. {
  1268. HSSFClientAnchor anchor = (HSSFClientAnchor) shape.getAnchor();
  1269. if (shape instanceof HSSFPicture)
  1270. {
  1271. HSSFPicture pic = (HSSFPicture) shape;
  1272. int pictureIndex = pic.getPictureIndex() - 1;
  1273. HSSFPictureData picData = pictures.get(pictureIndex);
  1274. String picIndex = String.valueOf(anchor.getRow1()) + "_" + String.valueOf(anchor.getCol1());
  1275. sheetIndexPicMap.put(picIndex, picData);
  1276. }
  1277. }
  1278. return sheetIndexPicMap;
  1279. }
  1280. else
  1281. {
  1282. return sheetIndexPicMap;
  1283. }
  1284. }
  1285. /**
  1286. * 获取Excel2007图片
  1287. *
  1288. * @param sheet 当前sheet对象
  1289. * @param workbook 工作簿对象
  1290. * @return Map key:图片单元格索引(1_1)String,value:图片流PictureData
  1291. */
  1292. public static Map<String, PictureData> getSheetPictures07(XSSFSheet sheet, XSSFWorkbook workbook)
  1293. {
  1294. Map<String, PictureData> sheetIndexPicMap = new HashMap<String, PictureData>();
  1295. for (POIXMLDocumentPart dr : sheet.getRelations())
  1296. {
  1297. if (dr instanceof XSSFDrawing)
  1298. {
  1299. XSSFDrawing drawing = (XSSFDrawing) dr;
  1300. List<XSSFShape> shapes = drawing.getShapes();
  1301. for (XSSFShape shape : shapes)
  1302. {
  1303. if (shape instanceof XSSFPicture)
  1304. {
  1305. XSSFPicture pic = (XSSFPicture) shape;
  1306. XSSFClientAnchor anchor = pic.getPreferredSize();
  1307. CTMarker ctMarker = anchor.getFrom();
  1308. String picIndex = ctMarker.getRow() + "_" + ctMarker.getCol();
  1309. sheetIndexPicMap.put(picIndex, pic.getPictureData());
  1310. }
  1311. }
  1312. }
  1313. }
  1314. return sheetIndexPicMap;
  1315. }
  1316. }