|
|
@@ -0,0 +1,112 @@
|
|
|
+package com.sckw.excel.config.easyexcel;
|
|
|
+
|
|
|
+import com.alibaba.excel.enums.CellDataTypeEnum;
|
|
|
+import com.alibaba.excel.metadata.Head;
|
|
|
+import com.alibaba.excel.metadata.data.CellData;
|
|
|
+import com.alibaba.excel.metadata.data.WriteCellData;
|
|
|
+import com.alibaba.excel.write.metadata.holder.WriteSheetHolder;
|
|
|
+import com.alibaba.excel.write.style.column.AbstractColumnWidthStyleStrategy;
|
|
|
+import com.sckw.core.common.enums.NumberConstant;
|
|
|
+import com.sckw.core.utils.CollectionUtils;
|
|
|
+import org.apache.poi.ss.usermodel.Cell;
|
|
|
+import org.apache.poi.ss.usermodel.CellType;
|
|
|
+import org.apache.poi.ss.usermodel.Sheet;
|
|
|
+
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author lfdc
|
|
|
+ * @description 自定义设置行高行宽
|
|
|
+ * @date 2023-10-11 14:10:19
|
|
|
+ */
|
|
|
+public class CustomCellWeightWeightConfig extends AbstractColumnWidthStyleStrategy {
|
|
|
+
|
|
|
+ private static final int MAX_COLUMN_WIDTH = 255;
|
|
|
+ // 保底宽度
|
|
|
+ private static final int COLUMN_WIDTH = 20;
|
|
|
+ private Map<Integer, Map<Integer, Integer>> CACHE = new HashMap<>();
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void setColumnWidth(WriteSheetHolder writeSheetHolder, List<WriteCellData<?>> cellDataList, Cell cell, Head head, Integer integer, Boolean isHead) {
|
|
|
+ boolean needSetWidth = isHead || !CollectionUtils.isEmpty(cellDataList);
|
|
|
+ if (needSetWidth) {
|
|
|
+ Map<Integer, Integer> maxColumnWidthMap = CACHE.get(writeSheetHolder.getSheetNo());
|
|
|
+ if (maxColumnWidthMap == null) {
|
|
|
+ maxColumnWidthMap = new HashMap<>();
|
|
|
+ CACHE.put(writeSheetHolder.getSheetNo(), maxColumnWidthMap);
|
|
|
+ }
|
|
|
+
|
|
|
+ Integer columnWidth = this.dataLength(cellDataList, cell, isHead);
|
|
|
+ if (columnWidth >= 0) {
|
|
|
+ if (columnWidth >= MAX_COLUMN_WIDTH) {
|
|
|
+ columnWidth = MAX_COLUMN_WIDTH;
|
|
|
+ } else {
|
|
|
+ if (columnWidth <= COLUMN_WIDTH) {
|
|
|
+ //小于基础跨度的时候略加宽
|
|
|
+ columnWidth = columnWidth + NumberConstant.EIGHT;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ Integer maxColumnWidth = maxColumnWidthMap.get(cell.getColumnIndex());
|
|
|
+ if (maxColumnWidth == null || columnWidth > maxColumnWidth) {
|
|
|
+ maxColumnWidthMap.put(cell.getColumnIndex(), columnWidth);
|
|
|
+ Sheet sheet = writeSheetHolder.getSheet();
|
|
|
+ sheet.setColumnWidth(cell.getColumnIndex(), columnWidth * 200);
|
|
|
+ }
|
|
|
+// if (maxColumnWidth == null || columnWidth > maxColumnWidth) {
|
|
|
+// maxColumnWidthMap.put(cell.getColumnIndex(), columnWidth);
|
|
|
+// writeSheetHolder.getSheet().setColumnWidth(cell.getColumnIndex(), columnWidth * 256);
|
|
|
+// } else {
|
|
|
+// // 设置表头宽度
|
|
|
+// writeSheetHolder.getSheet().setColumnWidth(cell.getColumnIndex(), columnWidth * 256);
|
|
|
+// }
|
|
|
+
|
|
|
+ //设置单元格类型
|
|
|
+ cell.setCellType(CellType.STRING);
|
|
|
+ // 数据总长度
|
|
|
+ int length = cell.getStringCellValue().length();
|
|
|
+ // 换行数
|
|
|
+ int rows = cell.getStringCellValue().split("\n").length;
|
|
|
+ // 默认一行高为20
|
|
|
+ cell.getRow().setHeightInPoints(rows * 20);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 计算长度
|
|
|
+ *
|
|
|
+ * @param cellDataList
|
|
|
+ * @param cell
|
|
|
+ * @param isHead
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private Integer dataLength(List<WriteCellData<?>> cellDataList, Cell cell, Boolean isHead) {
|
|
|
+ if (isHead) {
|
|
|
+ return cell.getStringCellValue().getBytes().length;
|
|
|
+ } else {
|
|
|
+ CellData cellData = cellDataList.get(0);
|
|
|
+ CellDataTypeEnum type = cellData.getType();
|
|
|
+ if (type == null) {
|
|
|
+ return -1;
|
|
|
+ } else {
|
|
|
+ switch (type) {
|
|
|
+ case STRING:
|
|
|
+ // 换行符(数据需要提前解析好)
|
|
|
+ int index = cellData.getStringValue().indexOf("\n");
|
|
|
+ return index != -1 ?
|
|
|
+ cellData.getStringValue().substring(0, index).getBytes().length + 1 : cellData.getStringValue().getBytes().length + 1;
|
|
|
+ case BOOLEAN:
|
|
|
+ return cellData.getBooleanValue().toString().getBytes().length;
|
|
|
+ case NUMBER:
|
|
|
+ return cellData.getNumberValue().toString().getBytes().length;
|
|
|
+ default:
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|