mirror of https://github.com/alibaba/easyexcel
Jiaju Zhuang
2 years ago
15 changed files with 290 additions and 14 deletions
@ -0,0 +1,36 @@
|
||||
package com.alibaba.excel.converters.localdate; |
||||
|
||||
import java.time.LocalDate; |
||||
import java.time.LocalDateTime; |
||||
|
||||
import com.alibaba.excel.converters.Converter; |
||||
import com.alibaba.excel.metadata.GlobalConfiguration; |
||||
import com.alibaba.excel.metadata.data.WriteCellData; |
||||
import com.alibaba.excel.metadata.property.ExcelContentProperty; |
||||
import com.alibaba.excel.util.DateUtils; |
||||
import com.alibaba.excel.util.WorkBookUtil; |
||||
|
||||
/** |
||||
* LocalDate and date converter |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class LocalDateDateConverter implements Converter<LocalDate> { |
||||
@Override |
||||
public Class<?> supportJavaTypeKey() { |
||||
return LocalDate.class; |
||||
} |
||||
|
||||
@Override |
||||
public WriteCellData<?> convertToExcelData(LocalDate value, ExcelContentProperty contentProperty, |
||||
GlobalConfiguration globalConfiguration) throws Exception { |
||||
LocalDateTime localDateTime = value == null ? null : value.atTime(0, 0); |
||||
WriteCellData<?> cellData = new WriteCellData<>(localDateTime); |
||||
String format = null; |
||||
if (contentProperty != null && contentProperty.getDateTimeFormatProperty() != null) { |
||||
format = contentProperty.getDateTimeFormatProperty().getFormat(); |
||||
} |
||||
WorkBookUtil.fillDataFormat(cellData, format, DateUtils.defaultLocalDateFormat); |
||||
return cellData; |
||||
} |
||||
} |
@ -0,0 +1,57 @@
|
||||
package com.alibaba.excel.converters.localdate; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.time.LocalDate; |
||||
import java.time.LocalDateTime; |
||||
|
||||
import com.alibaba.excel.converters.Converter; |
||||
import com.alibaba.excel.enums.CellDataTypeEnum; |
||||
import com.alibaba.excel.metadata.GlobalConfiguration; |
||||
import com.alibaba.excel.metadata.data.ReadCellData; |
||||
import com.alibaba.excel.metadata.data.WriteCellData; |
||||
import com.alibaba.excel.metadata.property.ExcelContentProperty; |
||||
import com.alibaba.excel.util.DateUtils; |
||||
|
||||
import org.apache.poi.ss.usermodel.DateUtil; |
||||
|
||||
/** |
||||
* LocalDate and number converter |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class LocalDateNumberConverter implements Converter<LocalDate> { |
||||
|
||||
@Override |
||||
public Class<?> supportJavaTypeKey() { |
||||
return LocalDate.class; |
||||
} |
||||
|
||||
@Override |
||||
public CellDataTypeEnum supportExcelTypeKey() { |
||||
return CellDataTypeEnum.NUMBER; |
||||
} |
||||
|
||||
@Override |
||||
public LocalDate convertToJavaData(ReadCellData<?> cellData, ExcelContentProperty contentProperty, |
||||
GlobalConfiguration globalConfiguration) { |
||||
if (contentProperty == null || contentProperty.getDateTimeFormatProperty() == null) { |
||||
return DateUtils.getLocalDate(cellData.getNumberValue().doubleValue(), |
||||
globalConfiguration.getUse1904windowing()); |
||||
} else { |
||||
return DateUtils.getLocalDate(cellData.getNumberValue().doubleValue(), |
||||
contentProperty.getDateTimeFormatProperty().getUse1904windowing()); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public WriteCellData<?> convertToExcelData(LocalDate value, ExcelContentProperty contentProperty, |
||||
GlobalConfiguration globalConfiguration) { |
||||
if (contentProperty == null || contentProperty.getDateTimeFormatProperty() == null) { |
||||
return new WriteCellData<>( |
||||
BigDecimal.valueOf(DateUtil.getExcelDate(value, globalConfiguration.getUse1904windowing()))); |
||||
} else { |
||||
return new WriteCellData<>(BigDecimal.valueOf( |
||||
DateUtil.getExcelDate(value, contentProperty.getDateTimeFormatProperty().getUse1904windowing()))); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,52 @@
|
||||
package com.alibaba.excel.converters.localdate; |
||||
|
||||
import java.text.ParseException; |
||||
import java.time.LocalDate; |
||||
|
||||
import com.alibaba.excel.converters.Converter; |
||||
import com.alibaba.excel.enums.CellDataTypeEnum; |
||||
import com.alibaba.excel.metadata.GlobalConfiguration; |
||||
import com.alibaba.excel.metadata.data.ReadCellData; |
||||
import com.alibaba.excel.metadata.data.WriteCellData; |
||||
import com.alibaba.excel.metadata.property.ExcelContentProperty; |
||||
import com.alibaba.excel.util.DateUtils; |
||||
|
||||
/** |
||||
* LocalDate and string converter |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class LocalDateStringConverter implements Converter<LocalDate> { |
||||
@Override |
||||
public Class<?> supportJavaTypeKey() { |
||||
return LocalDate.class; |
||||
} |
||||
|
||||
@Override |
||||
public CellDataTypeEnum supportExcelTypeKey() { |
||||
return CellDataTypeEnum.STRING; |
||||
} |
||||
|
||||
@Override |
||||
public LocalDate convertToJavaData(ReadCellData<?> cellData, ExcelContentProperty contentProperty, |
||||
GlobalConfiguration globalConfiguration) throws ParseException { |
||||
if (contentProperty == null || contentProperty.getDateTimeFormatProperty() == null) { |
||||
return DateUtils.parseLocalDate(cellData.getStringValue(), null, globalConfiguration.getLocale()); |
||||
} else { |
||||
return DateUtils.parseLocalDate(cellData.getStringValue(), |
||||
contentProperty.getDateTimeFormatProperty().getFormat(), globalConfiguration.getLocale()); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public WriteCellData<?> convertToExcelData(LocalDate value, ExcelContentProperty contentProperty, |
||||
GlobalConfiguration globalConfiguration) { |
||||
if (contentProperty == null || contentProperty.getDateTimeFormatProperty() == null) { |
||||
return new WriteCellData<>(DateUtils.format(value, null, globalConfiguration.getLocale())); |
||||
} else { |
||||
return new WriteCellData<>( |
||||
DateUtils.format(value, contentProperty.getDateTimeFormatProperty().getFormat(), |
||||
globalConfiguration.getLocale())); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,36 @@
|
||||
package com.alibaba.easyexcel.test.util; |
||||
|
||||
import java.io.File; |
||||
import java.io.InputStream; |
||||
import java.text.ParseException; |
||||
import java.time.LocalDate; |
||||
import java.time.LocalDateTime; |
||||
import java.util.Date; |
||||
|
||||
import com.alibaba.excel.util.DateUtils; |
||||
|
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.junit.Assert; |
||||
|
||||
/** |
||||
* test util |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
@Slf4j |
||||
public class TestUtil { |
||||
|
||||
public static final Date TEST_DATE; |
||||
public static final LocalDate TEST_LOCAL_DATE = LocalDate.of(2020, 1, 1); |
||||
public static final LocalDateTime TEST_LOCAL_DATE_TIME = LocalDateTime.of(2020, 1, 1, 1, 1, 1); |
||||
|
||||
static { |
||||
try { |
||||
TEST_DATE = DateUtils.parseDate("2020-01-01 01:01:01"); |
||||
} catch (ParseException e) { |
||||
log.error("init TestUtil error.", e); |
||||
throw new RuntimeException(e); |
||||
} |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue