forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.5 KiB
46 lines
1.5 KiB
package com.alibaba.excel.converters.string; |
|
|
|
import org.apache.poi.hssf.usermodel.HSSFDateUtil; |
|
|
|
import com.alibaba.excel.converters.Converter; |
|
import com.alibaba.excel.enums.CellDataTypeEnum; |
|
import com.alibaba.excel.metadata.CellData; |
|
import com.alibaba.excel.metadata.property.ExcelContentProperty; |
|
import com.alibaba.excel.util.DateUtils; |
|
import com.alibaba.excel.util.NumberUtils; |
|
|
|
/** |
|
* String and number converter |
|
* |
|
* @author zhuangjiaju |
|
*/ |
|
public class StringNumberConverter implements Converter<String> { |
|
|
|
@Override |
|
public Class supportJavaTypeKey() { |
|
return String.class; |
|
} |
|
|
|
@Override |
|
public CellDataTypeEnum supportExcelTypeKey() { |
|
return CellDataTypeEnum.NUMBER; |
|
} |
|
|
|
@Override |
|
public String convertToJavaData(CellData cellData, ExcelContentProperty contentProperty) { |
|
// If there are "DateTimeFormat", read as date |
|
if (contentProperty.getDateTimeFormatProperty() != null) { |
|
return DateUtils.format( |
|
HSSFDateUtil.getJavaDate(cellData.getDoubleValue(), |
|
contentProperty.getDateTimeFormatProperty().getUse1904windowing(), null), |
|
contentProperty.getDateTimeFormatProperty().getFormat()); |
|
} |
|
// If there are "NumberFormat", read as number |
|
return NumberUtils.format(cellData.getDoubleValue(), contentProperty); |
|
} |
|
|
|
@Override |
|
public CellData convertToExcelData(String value, ExcelContentProperty contentProperty) { |
|
return new CellData(Double.valueOf(value)); |
|
} |
|
}
|
|
|