|
|
@ -17,14 +17,15 @@ import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
|
import com.alibaba.excel.annotation.format.DateTimeFormat; |
|
|
|
import com.alibaba.excel.annotation.format.DateTimeFormat; |
|
|
|
import com.alibaba.excel.annotation.format.NumberFormat; |
|
|
|
import com.alibaba.excel.annotation.format.NumberFormat; |
|
|
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|
|
|
|
|
|
|
import com.alibaba.excel.converters.AutoConverter; |
|
|
|
import com.alibaba.excel.converters.AutoConverter; |
|
|
|
import com.alibaba.excel.converters.Converter; |
|
|
|
import com.alibaba.excel.converters.Converter; |
|
|
|
import com.alibaba.excel.enums.HeadKindEnum; |
|
|
|
import com.alibaba.excel.enums.HeadKindEnum; |
|
|
|
import com.alibaba.excel.exception.ExcelCommonException; |
|
|
|
import com.alibaba.excel.exception.ExcelCommonException; |
|
|
|
import com.alibaba.excel.exception.ExcelGenerateException; |
|
|
|
import com.alibaba.excel.exception.ExcelGenerateException; |
|
|
|
import com.alibaba.excel.metadata.Head; |
|
|
|
import com.alibaba.excel.metadata.Head; |
|
|
|
|
|
|
|
import com.alibaba.excel.metadata.Holder; |
|
|
|
import com.alibaba.excel.util.StringUtils; |
|
|
|
import com.alibaba.excel.util.StringUtils; |
|
|
|
|
|
|
|
import com.alibaba.excel.write.metadata.holder.AbstractWriteHolder; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Define the header attribute of excel |
|
|
|
* Define the header attribute of excel |
|
|
@ -46,7 +47,6 @@ public class ExcelHeadProperty { |
|
|
|
* The number of rows in the line with the most rows |
|
|
|
* The number of rows in the line with the most rows |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private int headRowNumber; |
|
|
|
private int headRowNumber; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Configuration header information |
|
|
|
* Configuration header information |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -64,7 +64,7 @@ public class ExcelHeadProperty { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private Map<String, Field> ignoreMap; |
|
|
|
private Map<String, Field> ignoreMap; |
|
|
|
|
|
|
|
|
|
|
|
public ExcelHeadProperty(Class headClazz, List<List<String>> head, Boolean convertAllFiled) { |
|
|
|
public ExcelHeadProperty(Holder holder, Class headClazz, List<List<String>> head, Boolean convertAllFiled) { |
|
|
|
this.headClazz = headClazz; |
|
|
|
this.headClazz = headClazz; |
|
|
|
headMap = new TreeMap<Integer, Head>(); |
|
|
|
headMap = new TreeMap<Integer, Head>(); |
|
|
|
contentPropertyMap = new TreeMap<Integer, ExcelContentProperty>(); |
|
|
|
contentPropertyMap = new TreeMap<Integer, ExcelContentProperty>(); |
|
|
@ -73,14 +73,21 @@ public class ExcelHeadProperty { |
|
|
|
headKind = HeadKindEnum.NONE; |
|
|
|
headKind = HeadKindEnum.NONE; |
|
|
|
headRowNumber = 0; |
|
|
|
headRowNumber = 0; |
|
|
|
if (head != null && !head.isEmpty()) { |
|
|
|
if (head != null && !head.isEmpty()) { |
|
|
|
|
|
|
|
int headIndex = 0; |
|
|
|
for (int i = 0; i < head.size(); i++) { |
|
|
|
for (int i = 0; i < head.size(); i++) { |
|
|
|
headMap.put(i, new Head(i, null, head.get(i), Boolean.FALSE, Boolean.TRUE)); |
|
|
|
if (holder instanceof AbstractWriteHolder) { |
|
|
|
contentPropertyMap.put(i, null); |
|
|
|
if (((AbstractWriteHolder)holder).ignore(null, i)) { |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
headMap.put(headIndex, new Head(headIndex, null, head.get(i), Boolean.FALSE, Boolean.TRUE)); |
|
|
|
|
|
|
|
contentPropertyMap.put(headIndex, null); |
|
|
|
|
|
|
|
headIndex++; |
|
|
|
} |
|
|
|
} |
|
|
|
headKind = HeadKindEnum.STRING; |
|
|
|
headKind = HeadKindEnum.STRING; |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
// convert headClazz to head
|
|
|
|
// convert headClazz to head
|
|
|
|
initColumnProperties(convertAllFiled); |
|
|
|
initColumnProperties(holder, convertAllFiled); |
|
|
|
} |
|
|
|
} |
|
|
|
initHeadRowNumber(); |
|
|
|
initHeadRowNumber(); |
|
|
|
if (LOGGER.isDebugEnabled()) { |
|
|
|
if (LOGGER.isDebugEnabled()) { |
|
|
@ -108,7 +115,7 @@ public class ExcelHeadProperty { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void initColumnProperties(Boolean convertAllFiled) { |
|
|
|
private void initColumnProperties(Holder holder, Boolean convertAllFiled) { |
|
|
|
if (headClazz == null) { |
|
|
|
if (headClazz == null) { |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
@ -161,20 +168,36 @@ public class ExcelHeadProperty { |
|
|
|
int index = 0; |
|
|
|
int index = 0; |
|
|
|
for (Field field : defaultFieldList) { |
|
|
|
for (Field field : defaultFieldList) { |
|
|
|
while (customFiledMap.containsKey(index)) { |
|
|
|
while (customFiledMap.containsKey(index)) { |
|
|
|
initOneColumnProperty(index, customFiledMap.get(index), Boolean.TRUE); |
|
|
|
|
|
|
|
customFiledMap.remove(index); |
|
|
|
customFiledMap.remove(index); |
|
|
|
|
|
|
|
if (!initOneColumnProperty(holder, index, customFiledMap.get(index), Boolean.TRUE)) { |
|
|
|
index++; |
|
|
|
index++; |
|
|
|
} |
|
|
|
} |
|
|
|
initOneColumnProperty(index, field, Boolean.FALSE); |
|
|
|
} |
|
|
|
|
|
|
|
if (!initOneColumnProperty(holder, index, field, Boolean.FALSE)) { |
|
|
|
index++; |
|
|
|
index++; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
for (Map.Entry<Integer, Field> entry : customFiledMap.entrySet()) { |
|
|
|
for (Map.Entry<Integer, Field> entry : customFiledMap.entrySet()) { |
|
|
|
initOneColumnProperty(entry.getKey(), entry.getValue(), Boolean.TRUE); |
|
|
|
initOneColumnProperty(holder, entry.getKey(), entry.getValue(), Boolean.TRUE); |
|
|
|
} |
|
|
|
} |
|
|
|
headKind = HeadKindEnum.CLASS; |
|
|
|
headKind = HeadKindEnum.CLASS; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void initOneColumnProperty(int index, Field field, Boolean forceIndex) { |
|
|
|
/** |
|
|
|
|
|
|
|
* Initialization column property |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param holder |
|
|
|
|
|
|
|
* @param index |
|
|
|
|
|
|
|
* @param field |
|
|
|
|
|
|
|
* @param forceIndex |
|
|
|
|
|
|
|
* @return Ignore current field |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private boolean initOneColumnProperty(Holder holder, int index, Field field, Boolean forceIndex) { |
|
|
|
|
|
|
|
if (holder instanceof AbstractWriteHolder) { |
|
|
|
|
|
|
|
if (((AbstractWriteHolder)holder).ignore(field.getName(), index)) { |
|
|
|
|
|
|
|
return true; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
ExcelProperty excelProperty = field.getAnnotation(ExcelProperty.class); |
|
|
|
ExcelProperty excelProperty = field.getAnnotation(ExcelProperty.class); |
|
|
|
List<String> tmpHeadList = new ArrayList<String>(); |
|
|
|
List<String> tmpHeadList = new ArrayList<String>(); |
|
|
|
boolean notForceName = excelProperty == null || excelProperty.value().length <= 0 |
|
|
|
boolean notForceName = excelProperty == null || excelProperty.value().length <= 0 |
|
|
@ -206,6 +229,7 @@ public class ExcelHeadProperty { |
|
|
|
headMap.put(index, head); |
|
|
|
headMap.put(index, head); |
|
|
|
contentPropertyMap.put(index, excelContentProperty); |
|
|
|
contentPropertyMap.put(index, excelContentProperty); |
|
|
|
fieldNameContentPropertyMap.put(field.getName(), excelContentProperty); |
|
|
|
fieldNameContentPropertyMap.put(field.getName(), excelContentProperty); |
|
|
|
|
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public Class getHeadClazz() { |
|
|
|
public Class getHeadClazz() { |
|
|
|