ExcelUtils.java 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. package com.persagy.excel;
  2. import cn.hutool.core.thread.ThreadUtil;
  3. import cn.hutool.core.util.ObjectUtil;
  4. import cn.hutool.core.util.StrUtil;
  5. import com.alibaba.excel.EasyExcel;
  6. import com.alibaba.fastjson.JSON;
  7. import com.persagy.common.ErrorCodeConstants;
  8. import com.persagy.common.R;
  9. import com.persagy.communication.entity.Packet;
  10. import com.persagy.communication.util.IClientManager;
  11. import com.persagy.parser.ParserEntity;
  12. import com.persagy.parser.RecordData;
  13. import com.persagy.util.DateUtil;
  14. import lombok.extern.slf4j.Slf4j;
  15. import org.apache.poi.ss.formula.functions.T;
  16. import org.springframework.web.multipart.MultipartFile;
  17. import java.io.FileInputStream;
  18. import java.io.IOException;
  19. import java.io.InputStream;
  20. import java.util.ArrayList;
  21. import java.util.Date;
  22. import java.util.List;
  23. import java.util.concurrent.atomic.AtomicLong;
  24. import java.util.function.Consumer;
  25. /**
  26. * Excel 工具类
  27. *
  28. * @author
  29. */
  30. @Slf4j
  31. public class ExcelUtils {
  32. public static AtomicLong totalCount = new AtomicLong(0);
  33. public static IClientManager ClientManager;
  34. public static final Consumer<ExcelData> consumeIot = (t) -> {
  35. String buildding = t.getBuildding();
  36. List<List<String>> dataList = t.getDataList();
  37. List<String> descriptionList = t.getDescriptionList();
  38. List<String> meterList = t.getMeterList();
  39. List<String> funcidList = t.getFuncidList();
  40. Boolean dynamic = t.getDynamic();
  41. try {
  42. ParserEntity parserEntity = ParserEntity.builder().building(buildding).gateway("0").datatype("report").packageId("0").dataList(new ArrayList<>()).build();
  43. for (List<String> item : dataList) {
  44. Date time = DateUtil.parseDate(item.get(0));
  45. for (int i = 1; i < item.size(); i++) {
  46. String value = item.get(i);
  47. String meter = meterList.get(i);
  48. String funcid = funcidList.get(i);
  49. if (StrUtil.isAllNotEmpty(value, meter, funcid)) {
  50. RecordData recordData = RecordData.builder().meter(meter).value(value).funcid(funcid).time(time).build();
  51. parserEntity.dataList.add(recordData);
  52. }
  53. }
  54. }
  55. log.info("保存数据:{}", JSON.toJSONString(parserEntity));
  56. if (ObjectUtil.isNotEmpty(parserEntity.dataList)) {
  57. StringBuffer sb = new StringBuffer();
  58. for (int i = 0; i < parserEntity.dataList.size(); i++) {
  59. RecordData recordData = parserEntity.dataList.get(i);
  60. if (sb.length() > 0) {
  61. sb.append("&");
  62. }
  63. sb.append(parserEntity.building).append(";").append(parserEntity.gateway).append(";report;").append(DateUtil.formatDate(recordData.time))
  64. .append(";").append(i).append(";").append(recordData.meter).append(";").append("1").append(";" + recordData.funcid + ";" + recordData.value);
  65. if(sb.length()>1500){
  66. ClientManager.AppendToSend(new Packet(sb.toString()));
  67. sb.setLength(0);
  68. }
  69. }
  70. if(sb.length()>0){
  71. ClientManager.AppendToSend(new Packet(sb.toString()));
  72. sb.setLength(0);
  73. }
  74. }
  75. } catch (Exception e) {
  76. log.error(e.getMessage(), e);
  77. }
  78. };
  79. public static <T> List<T> read(MultipartFile file, Class<T> head) throws IOException {
  80. return EasyExcel.read(file.getInputStream(), head, null)
  81. .autoCloseStream(false) // 不要自动关闭,交给 Servlet 自己处理
  82. .doReadAllSync();
  83. }
  84. /**
  85. * 异步读取excel
  86. *
  87. * @param filePath 文件觉得路径
  88. * @param sheetNo 从0开始
  89. * @param head Annotate the class for configuration information.
  90. * @param headRowNumber Count the number of added heads when read sheet.
  91. * 0 - This Sheet has no head ,since the first row are the data
  92. * 1 - This Sheet has one row head , this is the default
  93. * 2 - This Sheet has two row head ,since the third row is the data
  94. * @param excelListener
  95. * @return 读取的数据
  96. */
  97. public static R<ExcelListener> read(String filePath, MultipartFile simpleFile, InputStream simpleFileInputStream, Integer sheetNo, Class<T> head, Integer headRowNumber, ExcelListener<T> excelListener) {
  98. if (!ObjectUtil.isAllEmpty(simpleFile, simpleFileInputStream)) {
  99. //异步
  100. try {
  101. if (ObjectUtil.isNotEmpty(simpleFile)) {
  102. simpleFileInputStream = simpleFile.getInputStream();
  103. }
  104. log.info("开始时间:[{}],结束时间[{}],全部信息[{}]", excelListener.getStartTime(), excelListener.getEndTime(), JSON.toJSONString(excelListener));
  105. EasyExcel.read(simpleFileInputStream, head, excelListener).sheet(sheetNo).autoTrim(true).headRowNumber(headRowNumber).doRead();
  106. } catch (Exception e) {
  107. log.error("读取异常:{}", filePath, e);
  108. return R.fail(ErrorCodeConstants.USER_ERROR_A0001.getCode(), e.getMessage());
  109. }
  110. log.info("读到的数据信息:[{}]", JSON.toJSONString(excelListener));
  111. return R.success(excelListener);
  112. }
  113. if (StrUtil.isNotBlank(filePath)) {
  114. try (InputStream fileStream = new FileInputStream(filePath);) {
  115. //异步
  116. EasyExcel.read(fileStream, head, excelListener).sheet(sheetNo).autoTrim(true).headRowNumber(headRowNumber).doRead();
  117. //同步
  118. // return EasyExcel.read(fileStream).sheet(1).doReadSync();
  119. return R.success(excelListener);
  120. } catch (Exception e) {
  121. log.error("读取异常:{}", filePath, e);
  122. return R.fail(ErrorCodeConstants.USER_ERROR_A0001.getCode(), e.getMessage());
  123. }
  124. }
  125. return R.fail(ErrorCodeConstants.USER_ERROR_A0001.getCode(), "文件为空");
  126. }
  127. }