Before Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 811 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 66 KiB |
@ -0,0 +1,42 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.IndexRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
|
||||
import com.alibaba.excel.analysis.v03.AbstractXlsRecordHandler; |
||||
import com.alibaba.excel.context.AnalysisContext; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class IndexRecordHandler extends AbstractXlsRecordHandler { |
||||
|
||||
private AnalysisContext context; |
||||
|
||||
public IndexRecordHandler(AnalysisContext context) { |
||||
this.context = context; |
||||
} |
||||
|
||||
@Override |
||||
public boolean support(Record record) { |
||||
return record instanceof IndexRecord; |
||||
} |
||||
|
||||
@Override |
||||
public void init() {} |
||||
|
||||
@Override |
||||
public void processRecord(Record record) { |
||||
if (context.readSheetHolder() == null) { |
||||
return; |
||||
} |
||||
context.readSheetHolder().setApproximateTotalRowNumber(((IndexRecord)record).getLastRowAdd1()); |
||||
} |
||||
|
||||
@Override |
||||
public int getOrder() { |
||||
return 1; |
||||
} |
||||
} |
@ -0,0 +1,379 @@
|
||||
package com.alibaba.excel.constant; |
||||
|
||||
import java.util.Locale; |
||||
|
||||
/** |
||||
* Excel's built-in format conversion.Currently only supports Chinese. |
||||
* |
||||
* <p> |
||||
* If it is not Chinese, it is recommended to directly modify the builtinFormats, which will better support |
||||
* internationalization in the future. |
||||
* |
||||
* <p> |
||||
* Specific correspondence please see: |
||||
* https://docs.microsoft.com/en-us/dotnet/api/documentformat.openxml.spreadsheet.numberingformat?view=openxml-2.8.1
|
||||
* |
||||
* @author Jiaju Zhuang |
||||
**/ |
||||
public class BuiltinFormats { |
||||
|
||||
private static final String[] BUILTIN_FORMATS_CN = { |
||||
// 0
|
||||
"General", |
||||
// 1
|
||||
"0", |
||||
// 2
|
||||
"0.00", |
||||
// 3
|
||||
"#,##0", |
||||
// 4
|
||||
"#,##0.00", |
||||
// 5
|
||||
"\"¥\"#,##0_);(\"¥\"#,##0)", |
||||
// 6
|
||||
"\"¥\"#,##0_);[Red](\"¥\"#,##0)", |
||||
// 7
|
||||
"\"¥\"#,##0.00_);(\"¥\"#,##0.00)", |
||||
// 8
|
||||
"\"¥\"#,##0.00_);[Red](\"¥\"#,##0.00)", |
||||
// 9
|
||||
"0%", |
||||
// 10
|
||||
"0.00%", |
||||
// 11
|
||||
"0.00E+00", |
||||
// 12
|
||||
"# ?/?", |
||||
// 13
|
||||
"# ??/??", |
||||
// 14
|
||||
// The official documentation shows "m/d/yy", but the actual test is "yyyy/m/d".
|
||||
"yyyy/m/d", |
||||
// 15
|
||||
"d-mmm-yy", |
||||
// 16
|
||||
"d-mmm", |
||||
// 17
|
||||
"mmm-yy", |
||||
// 18
|
||||
"h:mm AM/PM", |
||||
// 19
|
||||
"h:mm:ss AM/PM", |
||||
// 20
|
||||
"h:mm", |
||||
// 21
|
||||
"h:mm:ss", |
||||
// 22
|
||||
// The official documentation shows "m/d/yy h:mm", but the actual test is "yyyy/m/d h:mm".
|
||||
"yyyy/m/d h:mm", |
||||
// 23-26 No specific correspondence found in the official documentation.
|
||||
// 23
|
||||
null, |
||||
// 24
|
||||
null, |
||||
// 25
|
||||
null, |
||||
// 26
|
||||
null, |
||||
// 27
|
||||
"yyyy\"年\"m\"月\"", |
||||
// 28
|
||||
"m\"月\"d\"日\"", |
||||
// 29
|
||||
"m\"月\"d\"日\"", |
||||
// 30
|
||||
"m-d-yy", |
||||
// 31
|
||||
"yyyy\"年\"m\"月\"d\"日\"", |
||||
// 32
|
||||
"h\"时\"mm\"分\"", |
||||
// 33
|
||||
"h\"时\"mm\"分\"ss\"秒\"", |
||||
// 34
|
||||
"上午/下午h\"时\"mm\"分\"", |
||||
// 35
|
||||
"上午/下午h\"时\"mm\"分\"ss\"秒\"", |
||||
// 36
|
||||
"yyyy\"年\"m\"月\"", |
||||
// 37
|
||||
"#,##0_);(#,##0)", |
||||
// 38
|
||||
"#,##0_);[Red](#,##0)", |
||||
// 39
|
||||
"#,##0.00_);(#,##0.00)", |
||||
// 40
|
||||
"#,##0.00_);[Red](#,##0.00)", |
||||
// 41
|
||||
"_(* #,##0_);_(* (#,##0);_(* \"-\"_);_(@_)", |
||||
// 42
|
||||
"_(\"¥\"* #,##0_);_(\"¥\"* (#,##0);_(\"¥\"* \"-\"_);_(@_)", |
||||
// 43
|
||||
"_(* #,##0.00_);_(* (#,##0.00);_(* \"-\"??_);_(@_)", |
||||
// 44
|
||||
"_(\"¥\"* #,##0.00_);_(\"¥\"* (#,##0.00);_(\"¥\"* \"-\"??_);_(@_)", |
||||
// 45
|
||||
"mm:ss", |
||||
// 46
|
||||
"[h]:mm:ss", |
||||
// 47
|
||||
"mm:ss.0", |
||||
// 48
|
||||
"##0.0E+0", |
||||
// 49
|
||||
"@", |
||||
// 50
|
||||
"yyyy\"年\"m\"月\"", |
||||
// 51
|
||||
"m\"月\"d\"日\"", |
||||
// 52
|
||||
"yyyy\"年\"m\"月\"", |
||||
// 53
|
||||
"m\"月\"d\"日\"", |
||||
// 54
|
||||
"m\"月\"d\"日\"", |
||||
// 55
|
||||
"上午/下午h\"时\"mm\"分\"", |
||||
// 56
|
||||
"上午/下午h\"时\"mm\"分\"ss\"秒\"", |
||||
// 57
|
||||
"yyyy\"年\"m\"月\"", |
||||
// 58
|
||||
"m\"月\"d\"日\"", |
||||
// 59
|
||||
"t0", |
||||
// 60
|
||||
"t0.00", |
||||
// 61
|
||||
"t#,##0", |
||||
// 62
|
||||
"t#,##0.00", |
||||
// 63-66 No specific correspondence found in the official documentation.
|
||||
// 63
|
||||
null, |
||||
// 64
|
||||
null, |
||||
// 65
|
||||
null, |
||||
// 66
|
||||
null, |
||||
// 67
|
||||
"t0%", |
||||
// 68
|
||||
"t0.00%", |
||||
// 69
|
||||
"t# ?/?", |
||||
// 70
|
||||
"t# ??/??", |
||||
// 71
|
||||
"ว/ด/ปปปป", |
||||
// 72
|
||||
"ว-ดดด-ปป", |
||||
// 73
|
||||
"ว-ดดด", |
||||
// 74
|
||||
"ดดด-ปป", |
||||
// 75
|
||||
"ช:นน", |
||||
// 76
|
||||
"ช:นน:ทท", |
||||
// 77
|
||||
"ว/ด/ปปปป ช:นน", |
||||
// 78
|
||||
"นน:ทท", |
||||
// 79
|
||||
"[ช]:นน:ทท", |
||||
// 80
|
||||
"นน:ทท.0", |
||||
// 81
|
||||
"d/m/bb", |
||||
// end
|
||||
}; |
||||
|
||||
private static final String[] BUILTIN_FORMATS_US = { |
||||
// 0
|
||||
"General", |
||||
// 1
|
||||
"0", |
||||
// 2
|
||||
"0.00", |
||||
// 3
|
||||
"#,##0", |
||||
// 4
|
||||
"#,##0.00", |
||||
// 5
|
||||
"\"$\"#,##0_);(\"$\"#,##0)", |
||||
// 6
|
||||
"\"$\"#,##0_);[Red](\"$\"#,##0)", |
||||
// 7
|
||||
"\"$\"#,##0.00_);(\"$\"#,##0.00)", |
||||
// 8
|
||||
"\"$\"#,##0.00_);[Red](\"$\"#,##0.00)", |
||||
// 9
|
||||
"0%", |
||||
// 10
|
||||
"0.00%", |
||||
// 11
|
||||
"0.00E+00", |
||||
// 12
|
||||
"# ?/?", |
||||
// 13
|
||||
"# ??/??", |
||||
// 14
|
||||
// The official documentation shows "m/d/yy", but the actual test is "yyyy/m/d".
|
||||
"yyyy/m/d", |
||||
// 15
|
||||
"d-mmm-yy", |
||||
// 16
|
||||
"d-mmm", |
||||
// 17
|
||||
"mmm-yy", |
||||
// 18
|
||||
"h:mm AM/PM", |
||||
// 19
|
||||
"h:mm:ss AM/PM", |
||||
// 20
|
||||
"h:mm", |
||||
// 21
|
||||
"h:mm:ss", |
||||
// 22
|
||||
// The official documentation shows "m/d/yy h:mm", but the actual test is "yyyy/m/d h:mm".
|
||||
"yyyy/m/d h:mm", |
||||
// 23-26 No specific correspondence found in the official documentation.
|
||||
// 23
|
||||
null, |
||||
// 24
|
||||
null, |
||||
// 25
|
||||
null, |
||||
// 26
|
||||
null, |
||||
// 27
|
||||
"yyyy\"年\"m\"月\"", |
||||
// 28
|
||||
"m\"月\"d\"日\"", |
||||
// 29
|
||||
"m\"月\"d\"日\"", |
||||
// 30
|
||||
"m-d-yy", |
||||
// 31
|
||||
"yyyy\"年\"m\"月\"d\"日\"", |
||||
// 32
|
||||
"h\"时\"mm\"分\"", |
||||
// 33
|
||||
"h\"时\"mm\"分\"ss\"秒\"", |
||||
// 34
|
||||
"上午/下午h\"时\"mm\"分\"", |
||||
// 35
|
||||
"上午/下午h\"时\"mm\"分\"ss\"秒\"", |
||||
// 36
|
||||
"yyyy\"年\"m\"月\"", |
||||
// 37
|
||||
"#,##0_);(#,##0)", |
||||
// 38
|
||||
"#,##0_);[Red](#,##0)", |
||||
// 39
|
||||
"#,##0.00_);(#,##0.00)", |
||||
// 40
|
||||
"#,##0.00_);[Red](#,##0.00)", |
||||
// 41
|
||||
"_(* #,##0_);_(* (#,##0);_(* \"-\"_);_(@_)", |
||||
// 42
|
||||
"_(\"$\"* #,##0_);_(\"$\"* (#,##0);_(\"$\"* \"-\"_);_(@_)", |
||||
// 43
|
||||
"_(* #,##0.00_);_(* (#,##0.00);_(* \"-\"??_);_(@_)", |
||||
// 44
|
||||
"_(\"$\"* #,##0.00_);_(\"$\"* (#,##0.00);_(\"$\"* \"-\"??_);_(@_)", |
||||
// 45
|
||||
"mm:ss", |
||||
// 46
|
||||
"[h]:mm:ss", |
||||
// 47
|
||||
"mm:ss.0", |
||||
// 48
|
||||
"##0.0E+0", |
||||
// 49
|
||||
"@", |
||||
// 50
|
||||
"yyyy\"年\"m\"月\"", |
||||
// 51
|
||||
"m\"月\"d\"日\"", |
||||
// 52
|
||||
"yyyy\"年\"m\"月\"", |
||||
// 53
|
||||
"m\"月\"d\"日\"", |
||||
// 54
|
||||
"m\"月\"d\"日\"", |
||||
// 55
|
||||
"上午/下午h\"时\"mm\"分\"", |
||||
// 56
|
||||
"上午/下午h\"时\"mm\"分\"ss\"秒\"", |
||||
// 57
|
||||
"yyyy\"年\"m\"月\"", |
||||
// 58
|
||||
"m\"月\"d\"日\"", |
||||
// 59
|
||||
"t0", |
||||
// 60
|
||||
"t0.00", |
||||
// 61
|
||||
"t#,##0", |
||||
// 62
|
||||
"t#,##0.00", |
||||
// 63-66 No specific correspondence found in the official documentation.
|
||||
// 63
|
||||
null, |
||||
// 64
|
||||
null, |
||||
// 65
|
||||
null, |
||||
// 66
|
||||
null, |
||||
// 67
|
||||
"t0%", |
||||
// 68
|
||||
"t0.00%", |
||||
// 69
|
||||
"t# ?/?", |
||||
// 70
|
||||
"t# ??/??", |
||||
// 71
|
||||
"ว/ด/ปปปป", |
||||
// 72
|
||||
"ว-ดดด-ปป", |
||||
// 73
|
||||
"ว-ดดด", |
||||
// 74
|
||||
"ดดด-ปป", |
||||
// 75
|
||||
"ช:นน", |
||||
// 76
|
||||
"ช:นน:ทท", |
||||
// 77
|
||||
"ว/ด/ปปปป ช:นน", |
||||
// 78
|
||||
"นน:ทท", |
||||
// 79
|
||||
"[ช]:นน:ทท", |
||||
// 80
|
||||
"นน:ทท.0", |
||||
// 81
|
||||
"d/m/bb", |
||||
// end
|
||||
}; |
||||
|
||||
public static String getBuiltinFormat(Integer index, String defaultFormat, Locale locale) { |
||||
String[] builtinFormat = switchBuiltinFormats(locale); |
||||
if (index == null || index < 0 || index >= builtinFormat.length) { |
||||
return defaultFormat; |
||||
} |
||||
return builtinFormat[index]; |
||||
} |
||||
|
||||
private static String[] switchBuiltinFormats(Locale locale) { |
||||
if (locale != null && Locale.US.getCountry().equals(locale.getCountry())) { |
||||
return BUILTIN_FORMATS_US; |
||||
} |
||||
return BUILTIN_FORMATS_CN; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,52 @@
|
||||
package com.alibaba.excel.converters.url; |
||||
|
||||
import java.io.IOException; |
||||
import java.io.InputStream; |
||||
import java.net.URL; |
||||
|
||||
import com.alibaba.excel.converters.Converter; |
||||
import com.alibaba.excel.enums.CellDataTypeEnum; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
import com.alibaba.excel.metadata.GlobalConfiguration; |
||||
import com.alibaba.excel.metadata.property.ExcelContentProperty; |
||||
import com.alibaba.excel.util.IoUtils; |
||||
|
||||
/** |
||||
* Url and image converter |
||||
* |
||||
* @since 2.1.1 |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class UrlImageConverter implements Converter<URL> { |
||||
@Override |
||||
public Class supportJavaTypeKey() { |
||||
return URL.class; |
||||
} |
||||
|
||||
@Override |
||||
public CellDataTypeEnum supportExcelTypeKey() { |
||||
return CellDataTypeEnum.IMAGE; |
||||
} |
||||
|
||||
@Override |
||||
public URL convertToJavaData(CellData cellData, ExcelContentProperty contentProperty, |
||||
GlobalConfiguration globalConfiguration) { |
||||
throw new UnsupportedOperationException("Cannot convert images to url."); |
||||
} |
||||
|
||||
@Override |
||||
public CellData convertToExcelData(URL value, ExcelContentProperty contentProperty, |
||||
GlobalConfiguration globalConfiguration) throws IOException { |
||||
InputStream inputStream = null; |
||||
try { |
||||
inputStream = value.openStream(); |
||||
byte[] bytes = IoUtils.toByteArray(inputStream); |
||||
return new CellData(bytes); |
||||
} finally { |
||||
if (inputStream != null) { |
||||
inputStream.close(); |
||||
} |
||||
} |
||||
} |
||||
|
||||
} |
@ -0,0 +1,93 @@
|
||||
package com.alibaba.excel.metadata; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
import java.util.Locale; |
||||
|
||||
import com.alibaba.excel.converters.Converter; |
||||
|
||||
/** |
||||
* ExcelBuilder |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public abstract class AbstractParameterBuilder<T extends AbstractParameterBuilder, C extends BasicParameter> { |
||||
/** |
||||
* You can only choose one of the {@link #head(List)} and {@link #head(Class)} |
||||
* |
||||
* @param head |
||||
* @return |
||||
*/ |
||||
public T head(List<List<String>> head) { |
||||
parameter().setHead(head); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* You can only choose one of the {@link #head(List)} and {@link #head(Class)} |
||||
* |
||||
* @param clazz |
||||
* @return |
||||
*/ |
||||
public T head(Class clazz) { |
||||
parameter().setClazz(clazz); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* Custom type conversions override the default. |
||||
* |
||||
* @param converter |
||||
* @return |
||||
*/ |
||||
public T registerConverter(Converter converter) { |
||||
if (parameter().getCustomConverterList() == null) { |
||||
parameter().setCustomConverterList(new ArrayList<Converter>()); |
||||
} |
||||
parameter().getCustomConverterList().add(converter); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* true if date uses 1904 windowing, or false if using 1900 date windowing. |
||||
* |
||||
* default is false |
||||
* |
||||
* @param use1904windowing |
||||
* @return |
||||
*/ |
||||
public T use1904windowing(Boolean use1904windowing) { |
||||
parameter().setUse1904windowing(use1904windowing); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* A <code>Locale</code> object represents a specific geographical, political, or cultural region. This parameter is |
||||
* used when formatting dates and numbers. |
||||
* |
||||
* @param locale |
||||
* @return |
||||
*/ |
||||
public T locale(Locale locale) { |
||||
parameter().setLocale(locale); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* Automatic trim includes sheet name and content |
||||
* |
||||
* @param autoTrim |
||||
* @return |
||||
*/ |
||||
public T autoTrim(Boolean autoTrim) { |
||||
parameter().setAutoTrim(autoTrim); |
||||
return self(); |
||||
} |
||||
|
||||
@SuppressWarnings("unchecked") |
||||
protected T self() { |
||||
return (T)this; |
||||
} |
||||
|
||||
protected abstract C parameter(); |
||||
} |
@ -0,0 +1,786 @@
|
||||
/* |
||||
* ==================================================================== Licensed to the Apache Software Foundation (ASF) |
||||
* under one or more contributor license agreements. See the NOTICE file distributed with this work for additional |
||||
* information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the |
||||
* License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations under the License. |
||||
* |
||||
* 2012 - Alfresco Software, Ltd. Alfresco Software has modified source of this file The details of changes as svn diff |
||||
* can be found in svn at location root/projects/3rd-party/src |
||||
* ==================================================================== |
||||
*/ |
||||
package com.alibaba.excel.metadata; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.math.RoundingMode; |
||||
import java.text.DateFormatSymbols; |
||||
import java.text.DecimalFormat; |
||||
import java.text.DecimalFormatSymbols; |
||||
import java.text.FieldPosition; |
||||
import java.text.Format; |
||||
import java.text.ParsePosition; |
||||
import java.util.ArrayList; |
||||
import java.util.Date; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Locale; |
||||
import java.util.Map; |
||||
import java.util.regex.Matcher; |
||||
import java.util.regex.Pattern; |
||||
|
||||
import org.apache.poi.ss.usermodel.DateUtil; |
||||
import org.apache.poi.ss.usermodel.ExcelGeneralNumberFormat; |
||||
import org.apache.poi.ss.usermodel.ExcelStyleDateFormatter; |
||||
import org.apache.poi.ss.usermodel.FractionFormat; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
|
||||
import com.alibaba.excel.util.DateUtils; |
||||
|
||||
/** |
||||
* Written with reference to {@link org.apache.poi.ss.usermodel.DataFormatter}.Made some optimizations for date |
||||
* conversion. |
||||
* <p> |
||||
* This is a non-thread-safe class. |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class DataFormatter { |
||||
/** For logging any problems we find */ |
||||
private static final Logger LOGGER = LoggerFactory.getLogger(DataFormatter.class); |
||||
private static final String defaultFractionWholePartFormat = "#"; |
||||
private static final String defaultFractionFractionPartFormat = "#/##"; |
||||
/** Pattern to find a number format: "0" or "#" */ |
||||
private static final Pattern numPattern = Pattern.compile("[0#]+"); |
||||
|
||||
/** Pattern to find days of week as text "ddd...." */ |
||||
private static final Pattern daysAsText = Pattern.compile("([d]{3,})", Pattern.CASE_INSENSITIVE); |
||||
|
||||
/** Pattern to find "AM/PM" marker */ |
||||
private static final Pattern amPmPattern = |
||||
Pattern.compile("(([AP])[M/P]*)|(([上下])[午/下]*)", Pattern.CASE_INSENSITIVE); |
||||
|
||||
/** Pattern to find formats with condition ranges e.g. [>=100] */ |
||||
private static final Pattern rangeConditionalPattern = |
||||
Pattern.compile(".*\\[\\s*(>|>=|<|<=|=)\\s*[0-9]*\\.*[0-9].*"); |
||||
|
||||
/** |
||||
* A regex to find locale patterns like [$$-1009] and [$?-452]. Note that we don't currently process these into |
||||
* locales |
||||
*/ |
||||
private static final Pattern localePatternGroup = Pattern.compile("(\\[\\$[^-\\]]*-[0-9A-Z]+])"); |
||||
|
||||
/** |
||||
* A regex to match the colour formattings rules. Allowed colours are: Black, Blue, Cyan, Green, Magenta, Red, |
||||
* White, Yellow, "Color n" (1<=n<=56) |
||||
*/ |
||||
private static final Pattern colorPattern = Pattern.compile( |
||||
"(\\[BLACK])|(\\[BLUE])|(\\[CYAN])|(\\[GREEN])|" + "(\\[MAGENTA])|(\\[RED])|(\\[WHITE])|(\\[YELLOW])|" |
||||
+ "(\\[COLOR\\s*\\d])|(\\[COLOR\\s*[0-5]\\d])|(\\[DBNum(1|2|3)])|(\\[\\$-\\d{0,3}])", |
||||
Pattern.CASE_INSENSITIVE); |
||||
|
||||
/** |
||||
* A regex to identify a fraction pattern. This requires that replaceAll("\\?", "#") has already been called |
||||
*/ |
||||
private static final Pattern fractionPattern = Pattern.compile("(?:([#\\d]+)\\s+)?(#+)\\s*/\\s*([#\\d]+)"); |
||||
|
||||
/** |
||||
* A regex to strip junk out of fraction formats |
||||
*/ |
||||
private static final Pattern fractionStripper = Pattern.compile("(\"[^\"]*\")|([^ ?#\\d/]+)"); |
||||
|
||||
/** |
||||
* A regex to detect if an alternate grouping character is used in a numeric format |
||||
*/ |
||||
private static final Pattern alternateGrouping = Pattern.compile("([#0]([^.#0])[#0]{3})"); |
||||
|
||||
/** |
||||
* Cells formatted with a date or time format and which contain invalid date or time values show 255 pound signs |
||||
* ("#"). |
||||
*/ |
||||
private static final String invalidDateTimeString; |
||||
static { |
||||
StringBuilder buf = new StringBuilder(); |
||||
for (int i = 0; i < 255; i++) |
||||
buf.append('#'); |
||||
invalidDateTimeString = buf.toString(); |
||||
} |
||||
|
||||
/** |
||||
* The decimal symbols of the locale used for formatting values. |
||||
*/ |
||||
private DecimalFormatSymbols decimalSymbols; |
||||
|
||||
/** |
||||
* The date symbols of the locale used for formatting values. |
||||
*/ |
||||
private DateFormatSymbols dateSymbols; |
||||
/** A default format to use when a number pattern cannot be parsed. */ |
||||
private Format defaultNumFormat; |
||||
/** |
||||
* A map to cache formats. Map<String,Format> formats |
||||
*/ |
||||
private final Map<String, Format> formats = new HashMap<String, Format>(); |
||||
|
||||
/** stores the locale valid it the last formatting call */ |
||||
private Locale locale; |
||||
/** |
||||
* true if date uses 1904 windowing, or false if using 1900 date windowing. |
||||
* |
||||
* default is false |
||||
* |
||||
* @return |
||||
*/ |
||||
private Boolean use1904windowing; |
||||
|
||||
/** |
||||
* Creates a formatter using the {@link Locale#getDefault() default locale}. |
||||
*/ |
||||
public DataFormatter() { |
||||
this(null, null); |
||||
} |
||||
|
||||
/** |
||||
* Creates a formatter using the given locale. |
||||
* |
||||
*/ |
||||
public DataFormatter(Locale locale, Boolean use1904windowing) { |
||||
this.use1904windowing = use1904windowing != null ? use1904windowing : Boolean.FALSE; |
||||
this.locale = locale != null ? locale : Locale.getDefault(); |
||||
this.dateSymbols = DateFormatSymbols.getInstance(this.locale); |
||||
this.decimalSymbols = DecimalFormatSymbols.getInstance(this.locale); |
||||
} |
||||
|
||||
private Format getFormat(Integer dataFormat, String dataFormatString) { |
||||
// See if we already have it cached
|
||||
Format format = formats.get(dataFormatString); |
||||
if (format != null) { |
||||
return format; |
||||
} |
||||
// Is it one of the special built in types, General or @?
|
||||
if ("General".equalsIgnoreCase(dataFormatString) || "@".equals(dataFormatString)) { |
||||
format = getDefaultFormat(); |
||||
addFormat(dataFormatString, format); |
||||
return format; |
||||
} |
||||
|
||||
// Build a formatter, and cache it
|
||||
format = createFormat(dataFormat, dataFormatString); |
||||
addFormat(dataFormatString, format); |
||||
return format; |
||||
} |
||||
|
||||
private Format createFormat(Integer dataFormat, String dataFormatString) { |
||||
String formatStr = dataFormatString; |
||||
|
||||
Format format = checkSpecialConverter(formatStr); |
||||
if (format != null) { |
||||
return format; |
||||
} |
||||
|
||||
// Remove colour formatting if present
|
||||
Matcher colourM = colorPattern.matcher(formatStr); |
||||
while (colourM.find()) { |
||||
String colour = colourM.group(); |
||||
|
||||
// Paranoid replacement...
|
||||
int at = formatStr.indexOf(colour); |
||||
if (at == -1) |
||||
break; |
||||
String nFormatStr = formatStr.substring(0, at) + formatStr.substring(at + colour.length()); |
||||
if (nFormatStr.equals(formatStr)) |
||||
break; |
||||
|
||||
// Try again in case there's multiple
|
||||
formatStr = nFormatStr; |
||||
colourM = colorPattern.matcher(formatStr); |
||||
} |
||||
|
||||
// Strip off the locale information, we use an instance-wide locale for everything
|
||||
Matcher m = localePatternGroup.matcher(formatStr); |
||||
while (m.find()) { |
||||
String match = m.group(); |
||||
String symbol = match.substring(match.indexOf('$') + 1, match.indexOf('-')); |
||||
if (symbol.indexOf('$') > -1) { |
||||
symbol = symbol.substring(0, symbol.indexOf('$')) + '\\' + symbol.substring(symbol.indexOf('$')); |
||||
} |
||||
formatStr = m.replaceAll(symbol); |
||||
m = localePatternGroup.matcher(formatStr); |
||||
} |
||||
|
||||
// Check for special cases
|
||||
if (formatStr == null || formatStr.trim().length() == 0) { |
||||
return getDefaultFormat(); |
||||
} |
||||
|
||||
if ("General".equalsIgnoreCase(formatStr) || "@".equals(formatStr)) { |
||||
return getDefaultFormat(); |
||||
} |
||||
|
||||
if (DateUtils.isADateFormat(dataFormat, formatStr)) { |
||||
return createDateFormat(formatStr); |
||||
} |
||||
// Excel supports fractions in format strings, which Java doesn't
|
||||
if (formatStr.contains("#/") || formatStr.contains("?/")) { |
||||
String[] chunks = formatStr.split(";"); |
||||
for (String chunk1 : chunks) { |
||||
String chunk = chunk1.replaceAll("\\?", "#"); |
||||
Matcher matcher = fractionStripper.matcher(chunk); |
||||
chunk = matcher.replaceAll(" "); |
||||
chunk = chunk.replaceAll(" +", " "); |
||||
Matcher fractionMatcher = fractionPattern.matcher(chunk); |
||||
// take the first match
|
||||
if (fractionMatcher.find()) { |
||||
String wholePart = (fractionMatcher.group(1) == null) ? "" : defaultFractionWholePartFormat; |
||||
return new FractionFormat(wholePart, fractionMatcher.group(3)); |
||||
} |
||||
} |
||||
|
||||
// Strip custom text in quotes and escaped characters for now as it can cause performance problems in
|
||||
// fractions.
|
||||
// String strippedFormatStr = formatStr.replaceAll("\\\\ ", " ").replaceAll("\\\\.",
|
||||
// "").replaceAll("\"[^\"]*\"", " ").replaceAll("\\?", "#");
|
||||
return new FractionFormat(defaultFractionWholePartFormat, defaultFractionFractionPartFormat); |
||||
} |
||||
|
||||
if (numPattern.matcher(formatStr).find()) { |
||||
return createNumberFormat(formatStr); |
||||
} |
||||
return getDefaultFormat(); |
||||
} |
||||
|
||||
private Format checkSpecialConverter(String dataFormatString) { |
||||
if ("00000\\-0000".equals(dataFormatString) || "00000-0000".equals(dataFormatString)) { |
||||
return new ZipPlusFourFormat(); |
||||
} |
||||
if ("[<=9999999]###\\-####;\\(###\\)\\ ###\\-####".equals(dataFormatString) |
||||
|| "[<=9999999]###-####;(###) ###-####".equals(dataFormatString) |
||||
|| "###\\-####;\\(###\\)\\ ###\\-####".equals(dataFormatString) |
||||
|| "###-####;(###) ###-####".equals(dataFormatString)) { |
||||
return new PhoneFormat(); |
||||
} |
||||
if ("000\\-00\\-0000".equals(dataFormatString) || "000-00-0000".equals(dataFormatString)) { |
||||
return new SSNFormat(); |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
private Format createDateFormat(String pFormatStr) { |
||||
String formatStr = pFormatStr; |
||||
formatStr = formatStr.replaceAll("\\\\-", "-"); |
||||
formatStr = formatStr.replaceAll("\\\\,", ","); |
||||
formatStr = formatStr.replaceAll("\\\\\\.", "."); // . is a special regexp char
|
||||
formatStr = formatStr.replaceAll("\\\\ ", " "); |
||||
formatStr = formatStr.replaceAll("\\\\/", "/"); // weird: m\\/d\\/yyyy
|
||||
formatStr = formatStr.replaceAll(";@", ""); |
||||
formatStr = formatStr.replaceAll("\"/\"", "/"); // "/" is escaped for no reason in: mm"/"dd"/"yyyy
|
||||
formatStr = formatStr.replace("\"\"", "'"); // replace Excel quoting with Java style quoting
|
||||
formatStr = formatStr.replaceAll("\\\\T", "'T'"); // Quote the T is iso8601 style dates
|
||||
formatStr = formatStr.replace("\"", ""); |
||||
|
||||
boolean hasAmPm = false; |
||||
Matcher amPmMatcher = amPmPattern.matcher(formatStr); |
||||
while (amPmMatcher.find()) { |
||||
formatStr = amPmMatcher.replaceAll("@"); |
||||
hasAmPm = true; |
||||
amPmMatcher = amPmPattern.matcher(formatStr); |
||||
} |
||||
formatStr = formatStr.replaceAll("@", "a"); |
||||
|
||||
Matcher dateMatcher = daysAsText.matcher(formatStr); |
||||
if (dateMatcher.find()) { |
||||
String match = dateMatcher.group(0).toUpperCase(Locale.ROOT).replaceAll("D", "E"); |
||||
formatStr = dateMatcher.replaceAll(match); |
||||
} |
||||
|
||||
// Convert excel date format to SimpleDateFormat.
|
||||
// Excel uses lower and upper case 'm' for both minutes and months.
|
||||
// From Excel help:
|
||||
/* |
||||
The "m" or "mm" code must appear immediately after the "h" or"hh" |
||||
code or immediately before the "ss" code; otherwise, Microsoft |
||||
Excel displays the month instead of minutes." |
||||
*/ |
||||
StringBuilder sb = new StringBuilder(); |
||||
char[] chars = formatStr.toCharArray(); |
||||
boolean mIsMonth = true; |
||||
List<Integer> ms = new ArrayList<Integer>(); |
||||
boolean isElapsed = false; |
||||
for (int j = 0; j < chars.length; j++) { |
||||
char c = chars[j]; |
||||
if (c == '\'') { |
||||
sb.append(c); |
||||
j++; |
||||
|
||||
// skip until the next quote
|
||||
while (j < chars.length) { |
||||
c = chars[j]; |
||||
sb.append(c); |
||||
if (c == '\'') { |
||||
break; |
||||
} |
||||
j++; |
||||
} |
||||
} else if (c == '[' && !isElapsed) { |
||||
isElapsed = true; |
||||
mIsMonth = false; |
||||
sb.append(c); |
||||
} else if (c == ']' && isElapsed) { |
||||
isElapsed = false; |
||||
sb.append(c); |
||||
} else if (isElapsed) { |
||||
if (c == 'h' || c == 'H') { |
||||
sb.append('H'); |
||||
} else if (c == 'm' || c == 'M') { |
||||
sb.append('m'); |
||||
} else if (c == 's' || c == 'S') { |
||||
sb.append('s'); |
||||
} else { |
||||
sb.append(c); |
||||
} |
||||
} else if (c == 'h' || c == 'H') { |
||||
mIsMonth = false; |
||||
if (hasAmPm) { |
||||
sb.append('h'); |
||||
} else { |
||||
sb.append('H'); |
||||
} |
||||
} else if (c == 'm' || c == 'M') { |
||||
if (mIsMonth) { |
||||
sb.append('M'); |
||||
ms.add(Integer.valueOf(sb.length() - 1)); |
||||
} else { |
||||
sb.append('m'); |
||||
} |
||||
} else if (c == 's' || c == 'S') { |
||||
sb.append('s'); |
||||
// if 'M' precedes 's' it should be minutes ('m')
|
||||
for (int index : ms) { |
||||
if (sb.charAt(index) == 'M') { |
||||
sb.replace(index, index + 1, "m"); |
||||
} |
||||
} |
||||
mIsMonth = true; |
||||
ms.clear(); |
||||
} else if (Character.isLetter(c)) { |
||||
mIsMonth = true; |
||||
ms.clear(); |
||||
if (c == 'y' || c == 'Y') { |
||||
sb.append('y'); |
||||
} else if (c == 'd' || c == 'D') { |
||||
sb.append('d'); |
||||
} else { |
||||
sb.append(c); |
||||
} |
||||
} else { |
||||
if (Character.isWhitespace(c)) { |
||||
ms.clear(); |
||||
} |
||||
sb.append(c); |
||||
} |
||||
} |
||||
formatStr = sb.toString(); |
||||
|
||||
try { |
||||
return new ExcelStyleDateFormatter(formatStr, dateSymbols); |
||||
} catch (IllegalArgumentException iae) { |
||||
LOGGER.debug("Formatting failed for format {}, falling back", formatStr, iae); |
||||
// the pattern could not be parsed correctly,
|
||||
// so fall back to the default number format
|
||||
return getDefaultFormat(); |
||||
} |
||||
|
||||
} |
||||
|
||||
private String cleanFormatForNumber(String formatStr) { |
||||
StringBuilder sb = new StringBuilder(formatStr); |
||||
// If they requested spacers, with "_",
|
||||
// remove those as we don't do spacing
|
||||
// If they requested full-column-width
|
||||
// padding, with "*", remove those too
|
||||
for (int i = 0; i < sb.length(); i++) { |
||||
char c = sb.charAt(i); |
||||
if (c == '_' || c == '*') { |
||||
if (i > 0 && sb.charAt((i - 1)) == '\\') { |
||||
// It's escaped, don't worry
|
||||
continue; |
||||
} |
||||
if (i < sb.length() - 1) { |
||||
// Remove the character we're supposed
|
||||
// to match the space of / pad to the
|
||||
// column width with
|
||||
sb.deleteCharAt(i + 1); |
||||
} |
||||
// Remove the _ too
|
||||
sb.deleteCharAt(i); |
||||
i--; |
||||
} |
||||
} |
||||
|
||||
// Now, handle the other aspects like
|
||||
// quoting and scientific notation
|
||||
for (int i = 0; i < sb.length(); i++) { |
||||
char c = sb.charAt(i); |
||||
// remove quotes and back slashes
|
||||
if (c == '\\' || c == '"') { |
||||
sb.deleteCharAt(i); |
||||
i--; |
||||
|
||||
// for scientific/engineering notation
|
||||
} else if (c == '+' && i > 0 && sb.charAt(i - 1) == 'E') { |
||||
sb.deleteCharAt(i); |
||||
i--; |
||||
} |
||||
} |
||||
|
||||
return sb.toString(); |
||||
} |
||||
|
||||
private static class InternalDecimalFormatWithScale extends Format { |
||||
|
||||
private static final Pattern endsWithCommas = Pattern.compile("(,+)$"); |
||||
private BigDecimal divider; |
||||
private static final BigDecimal ONE_THOUSAND = new BigDecimal(1000); |
||||
private final DecimalFormat df; |
||||
|
||||
private static String trimTrailingCommas(String s) { |
||||
return s.replaceAll(",+$", ""); |
||||
} |
||||
|
||||
public InternalDecimalFormatWithScale(String pattern, DecimalFormatSymbols symbols) { |
||||
df = new DecimalFormat(trimTrailingCommas(pattern), symbols); |
||||
setExcelStyleRoundingMode(df); |
||||
Matcher endsWithCommasMatcher = endsWithCommas.matcher(pattern); |
||||
if (endsWithCommasMatcher.find()) { |
||||
String commas = (endsWithCommasMatcher.group(1)); |
||||
BigDecimal temp = BigDecimal.ONE; |
||||
for (int i = 0; i < commas.length(); ++i) { |
||||
temp = temp.multiply(ONE_THOUSAND); |
||||
} |
||||
divider = temp; |
||||
} else { |
||||
divider = null; |
||||
} |
||||
} |
||||
|
||||
private Object scaleInput(Object obj) { |
||||
if (divider != null) { |
||||
if (obj instanceof BigDecimal) { |
||||
obj = ((BigDecimal)obj).divide(divider, RoundingMode.HALF_UP); |
||||
} else if (obj instanceof Double) { |
||||
obj = (Double)obj / divider.doubleValue(); |
||||
} else { |
||||
throw new UnsupportedOperationException(); |
||||
} |
||||
} |
||||
return obj; |
||||
} |
||||
|
||||
@Override |
||||
public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos) { |
||||
obj = scaleInput(obj); |
||||
return df.format(obj, toAppendTo, pos); |
||||
} |
||||
|
||||
@Override |
||||
public Object parseObject(String source, ParsePosition pos) { |
||||
throw new UnsupportedOperationException(); |
||||
} |
||||
} |
||||
|
||||
private Format createNumberFormat(String formatStr) { |
||||
String format = cleanFormatForNumber(formatStr); |
||||
DecimalFormatSymbols symbols = decimalSymbols; |
||||
|
||||
// Do we need to change the grouping character?
|
||||
// eg for a format like #'##0 which wants 12'345 not 12,345
|
||||
Matcher agm = alternateGrouping.matcher(format); |
||||
if (agm.find()) { |
||||
char grouping = agm.group(2).charAt(0); |
||||
// Only replace the grouping character if it is not the default
|
||||
// grouping character for the US locale (',') in order to enable
|
||||
// correct grouping for non-US locales.
|
||||
if (grouping != ',') { |
||||
symbols = DecimalFormatSymbols.getInstance(locale); |
||||
|
||||
symbols.setGroupingSeparator(grouping); |
||||
String oldPart = agm.group(1); |
||||
String newPart = oldPart.replace(grouping, ','); |
||||
format = format.replace(oldPart, newPart); |
||||
} |
||||
} |
||||
|
||||
try { |
||||
return new InternalDecimalFormatWithScale(format, symbols); |
||||
} catch (IllegalArgumentException iae) { |
||||
LOGGER.debug("Formatting failed for format {}, falling back", formatStr, iae); |
||||
// the pattern could not be parsed correctly,
|
||||
// so fall back to the default number format
|
||||
return getDefaultFormat(); |
||||
} |
||||
} |
||||
|
||||
private Format getDefaultFormat() { |
||||
// for numeric cells try user supplied default
|
||||
if (defaultNumFormat != null) { |
||||
return defaultNumFormat; |
||||
// otherwise use general format
|
||||
} |
||||
defaultNumFormat = new ExcelGeneralNumberFormat(locale); |
||||
return defaultNumFormat; |
||||
} |
||||
|
||||
/** |
||||
* Performs Excel-style date formatting, using the supplied Date and format |
||||
*/ |
||||
private String performDateFormatting(Date d, Format dateFormat) { |
||||
Format df = dateFormat != null ? dateFormat : getDefaultFormat(); |
||||
return df.format(d); |
||||
} |
||||
|
||||
/** |
||||
* Returns the formatted value of an Excel date as a <tt>String</tt> based on the cell's <code>DataFormat</code>. |
||||
* i.e. "Thursday, January 02, 2003" , "01/02/2003" , "02-Jan" , etc. |
||||
* <p> |
||||
* If any conditional format rules apply, the highest priority with a number format is used. If no rules contain a |
||||
* number format, or no rules apply, the cell's style format is used. If the style does not have a format, the |
||||
* default date format is applied. |
||||
* |
||||
* @param data |
||||
* to format |
||||
* @param dataFormat |
||||
* @param dataFormatString |
||||
* @return Formatted value |
||||
*/ |
||||
private String getFormattedDateString(Double data, Integer dataFormat, String dataFormatString) { |
||||
Format dateFormat = getFormat(dataFormat, dataFormatString); |
||||
if (dateFormat instanceof ExcelStyleDateFormatter) { |
||||
// Hint about the raw excel value
|
||||
((ExcelStyleDateFormatter)dateFormat).setDateToBeFormatted(data); |
||||
} |
||||
return performDateFormatting(DateUtil.getJavaDate(data, use1904windowing), dateFormat); |
||||
} |
||||
|
||||
/** |
||||
* Returns the formatted value of an Excel number as a <tt>String</tt> based on the cell's <code>DataFormat</code>. |
||||
* Supported formats include currency, percents, decimals, phone number, SSN, etc.: "61.54%", "$100.00", "(800) |
||||
* 555-1234". |
||||
* <p> |
||||
* Format comes from either the highest priority conditional format rule with a specified format, or from the cell |
||||
* style. |
||||
* |
||||
* @param data |
||||
* to format |
||||
* @param dataFormat |
||||
* @param dataFormatString |
||||
* @return a formatted number string |
||||
*/ |
||||
private String getFormattedNumberString(Double data, Integer dataFormat, String dataFormatString) { |
||||
Format numberFormat = getFormat(dataFormat, dataFormatString); |
||||
String formatted = numberFormat.format(data); |
||||
return formatted.replaceFirst("E(\\d)", "E+$1"); // to match Excel's E-notation
|
||||
} |
||||
|
||||
/** |
||||
* Format data. |
||||
* |
||||
* @param data |
||||
* @param dataFormat |
||||
* @param dataFormatString |
||||
* @return |
||||
*/ |
||||
public String format(Double data, Integer dataFormat, String dataFormatString) { |
||||
if (DateUtils.isADateFormat(dataFormat, dataFormatString)) { |
||||
return getFormattedDateString(data, dataFormat, dataFormatString); |
||||
} |
||||
return getFormattedNumberString(data, dataFormat, dataFormatString); |
||||
} |
||||
|
||||
/** |
||||
* <p> |
||||
* Sets a default number format to be used when the Excel format cannot be parsed successfully. <b>Note:</b> This is |
||||
* a fall back for when an error occurs while parsing an Excel number format pattern. This will not affect cells |
||||
* with the <em>General</em> format. |
||||
* </p> |
||||
* <p> |
||||
* The value that will be passed to the Format's format method (specified by <code>java.text.Format#format</code>) |
||||
* will be a double value from a numeric cell. Therefore the code in the format method should expect a |
||||
* <code>Number</code> value. |
||||
* </p> |
||||
* |
||||
* @param format |
||||
* A Format instance to be used as a default |
||||
* @see Format#format |
||||
*/ |
||||
public void setDefaultNumberFormat(Format format) { |
||||
for (Map.Entry<String, Format> entry : formats.entrySet()) { |
||||
if (entry.getValue() == defaultNumFormat) { |
||||
entry.setValue(format); |
||||
} |
||||
} |
||||
defaultNumFormat = format; |
||||
} |
||||
|
||||
/** |
||||
* Adds a new format to the available formats. |
||||
* <p> |
||||
* The value that will be passed to the Format's format method (specified by <code>java.text.Format#format</code>) |
||||
* will be a double value from a numeric cell. Therefore the code in the format method should expect a |
||||
* <code>Number</code> value. |
||||
* </p> |
||||
* |
||||
* @param excelFormatStr |
||||
* The data format string |
||||
* @param format |
||||
* A Format instance |
||||
*/ |
||||
public void addFormat(String excelFormatStr, Format format) { |
||||
formats.put(excelFormatStr, format); |
||||
} |
||||
|
||||
// Some custom formats
|
||||
|
||||
/** |
||||
* @return a <tt>DecimalFormat</tt> with parseIntegerOnly set <code>true</code> |
||||
*/ |
||||
private static DecimalFormat createIntegerOnlyFormat(String fmt) { |
||||
DecimalFormatSymbols dsf = DecimalFormatSymbols.getInstance(Locale.ROOT); |
||||
DecimalFormat result = new DecimalFormat(fmt, dsf); |
||||
result.setParseIntegerOnly(true); |
||||
return result; |
||||
} |
||||
|
||||
/** |
||||
* Enables excel style rounding mode (round half up) on the Decimal Format given. |
||||
*/ |
||||
public static void setExcelStyleRoundingMode(DecimalFormat format) { |
||||
setExcelStyleRoundingMode(format, RoundingMode.HALF_UP); |
||||
} |
||||
|
||||
/** |
||||
* Enables custom rounding mode on the given Decimal Format. |
||||
* |
||||
* @param format |
||||
* DecimalFormat |
||||
* @param roundingMode |
||||
* RoundingMode |
||||
*/ |
||||
public static void setExcelStyleRoundingMode(DecimalFormat format, RoundingMode roundingMode) { |
||||
format.setRoundingMode(roundingMode); |
||||
} |
||||
|
||||
/** |
||||
* Format class for Excel's SSN format. This class mimics Excel's built-in SSN formatting. |
||||
* |
||||
* @author James May |
||||
*/ |
||||
@SuppressWarnings("serial") |
||||
private static final class SSNFormat extends Format { |
||||
private static final DecimalFormat df = createIntegerOnlyFormat("000000000"); |
||||
|
||||
private SSNFormat() { |
||||
// enforce singleton
|
||||
} |
||||
|
||||
/** Format a number as an SSN */ |
||||
public static String format(Number num) { |
||||
String result = df.format(num); |
||||
return result.substring(0, 3) + '-' + result.substring(3, 5) + '-' + result.substring(5, 9); |
||||
} |
||||
|
||||
@Override |
||||
public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos) { |
||||
return toAppendTo.append(format((Number)obj)); |
||||
} |
||||
|
||||
@Override |
||||
public Object parseObject(String source, ParsePosition pos) { |
||||
return df.parseObject(source, pos); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* Format class for Excel Zip + 4 format. This class mimics Excel's built-in formatting for Zip + 4. |
||||
* |
||||
* @author James May |
||||
*/ |
||||
@SuppressWarnings("serial") |
||||
private static final class ZipPlusFourFormat extends Format { |
||||
private static final DecimalFormat df = createIntegerOnlyFormat("000000000"); |
||||
|
||||
private ZipPlusFourFormat() { |
||||
// enforce singleton
|
||||
} |
||||
|
||||
/** Format a number as Zip + 4 */ |
||||
public static String format(Number num) { |
||||
String result = df.format(num); |
||||
return result.substring(0, 5) + '-' + result.substring(5, 9); |
||||
} |
||||
|
||||
@Override |
||||
public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos) { |
||||
return toAppendTo.append(format((Number)obj)); |
||||
} |
||||
|
||||
@Override |
||||
public Object parseObject(String source, ParsePosition pos) { |
||||
return df.parseObject(source, pos); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* Format class for Excel phone number format. This class mimics Excel's built-in phone number formatting. |
||||
* |
||||
* @author James May |
||||
*/ |
||||
@SuppressWarnings("serial") |
||||
private static final class PhoneFormat extends Format { |
||||
private static final DecimalFormat df = createIntegerOnlyFormat("##########"); |
||||
|
||||
private PhoneFormat() { |
||||
// enforce singleton
|
||||
} |
||||
|
||||
/** Format a number as a phone number */ |
||||
public static String format(Number num) { |
||||
String result = df.format(num); |
||||
StringBuilder sb = new StringBuilder(); |
||||
String seg1, seg2, seg3; |
||||
int len = result.length(); |
||||
if (len <= 4) { |
||||
return result; |
||||
} |
||||
|
||||
seg3 = result.substring(len - 4, len); |
||||
seg2 = result.substring(Math.max(0, len - 7), len - 4); |
||||
seg1 = result.substring(Math.max(0, len - 10), Math.max(0, len - 7)); |
||||
|
||||
if (seg1.trim().length() > 0) { |
||||
sb.append('(').append(seg1).append(") "); |
||||
} |
||||
if (seg2.trim().length() > 0) { |
||||
sb.append(seg2).append('-'); |
||||
} |
||||
sb.append(seg3); |
||||
return sb.toString(); |
||||
} |
||||
|
||||
@Override |
||||
public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos) { |
||||
return toAppendTo.append(format((Number)obj)); |
||||
} |
||||
|
||||
@Override |
||||
public Object parseObject(String source, ParsePosition pos) { |
||||
return df.parseObject(source, pos); |
||||
} |
||||
} |
||||
|
||||
} |
@ -0,0 +1,47 @@
|
||||
package com.alibaba.excel.read.builder; |
||||
|
||||
import java.util.ArrayList; |
||||
|
||||
import com.alibaba.excel.metadata.AbstractParameterBuilder; |
||||
import com.alibaba.excel.read.listener.ReadListener; |
||||
import com.alibaba.excel.read.metadata.ReadBasicParameter; |
||||
|
||||
/** |
||||
* Build ExcelBuilder |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public abstract class AbstractExcelReaderParameterBuilder<T extends AbstractExcelReaderParameterBuilder, |
||||
C extends ReadBasicParameter> extends AbstractParameterBuilder<T, C> { |
||||
/** |
||||
* Count the number of added heads when read sheet. |
||||
* |
||||
* <p> |
||||
* 0 - This Sheet has no head ,since the first row are the data |
||||
* <p> |
||||
* 1 - This Sheet has one row head , this is the default |
||||
* <p> |
||||
* 2 - This Sheet has two row head ,since the third row is the data |
||||
* |
||||
* @param headRowNumber |
||||
* @return |
||||
*/ |
||||
public T headRowNumber(Integer headRowNumber) { |
||||
parameter().setHeadRowNumber(headRowNumber); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* Custom type listener run after default |
||||
* |
||||
* @param readListener |
||||
* @return |
||||
*/ |
||||
public T registerReadListener(ReadListener readListener) { |
||||
if (parameter().getCustomReadListenerList() == null) { |
||||
parameter().setCustomReadListenerList(new ArrayList<ReadListener>()); |
||||
} |
||||
parameter().getCustomReadListenerList().add(readListener); |
||||
return self(); |
||||
} |
||||
} |
@ -0,0 +1,150 @@
|
||||
package com.alibaba.excel.util; |
||||
|
||||
import java.lang.ref.SoftReference; |
||||
import java.lang.reflect.Field; |
||||
import java.lang.reflect.Modifier; |
||||
import java.util.ArrayList; |
||||
import java.util.Collections; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import java.util.TreeMap; |
||||
import java.util.concurrent.ConcurrentHashMap; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnore; |
||||
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.exception.ExcelCommonException; |
||||
import com.alibaba.excel.metadata.BaseRowModel; |
||||
|
||||
/** |
||||
* Class utils |
||||
* |
||||
* @author Jiaju Zhuang |
||||
**/ |
||||
public class ClassUtils { |
||||
private static final Map<Class, SoftReference<FieldCache>> FIELD_CACHE = |
||||
new ConcurrentHashMap<Class, SoftReference<FieldCache>>(); |
||||
|
||||
public static void declaredFields(Class clazz, List<Field> defaultFieldList, Map<Integer, Field> customFiledMap, |
||||
Map<String, Field> ignoreMap, Boolean convertAllFiled) { |
||||
FieldCache fieldCache = getFieldCache(clazz, convertAllFiled); |
||||
if (fieldCache != null) { |
||||
defaultFieldList.addAll(fieldCache.getDefaultFieldList()); |
||||
customFiledMap.putAll(fieldCache.getCustomFiledMap()); |
||||
ignoreMap.putAll(fieldCache.getIgnoreMap()); |
||||
} |
||||
} |
||||
|
||||
public static void declaredFields(Class clazz, List<Field> fieldList, Boolean convertAllFiled) { |
||||
FieldCache fieldCache = getFieldCache(clazz, convertAllFiled); |
||||
if (fieldCache != null) { |
||||
fieldList.addAll(fieldCache.getAllFieldList()); |
||||
} |
||||
} |
||||
|
||||
private static FieldCache getFieldCache(Class clazz, Boolean convertAllFiled) { |
||||
if (clazz == null) { |
||||
return null; |
||||
} |
||||
SoftReference<FieldCache> fieldCacheSoftReference = FIELD_CACHE.get(clazz); |
||||
if (fieldCacheSoftReference != null && fieldCacheSoftReference.get() != null) { |
||||
return fieldCacheSoftReference.get(); |
||||
} |
||||
synchronized (clazz) { |
||||
fieldCacheSoftReference = FIELD_CACHE.get(clazz); |
||||
if (fieldCacheSoftReference != null && fieldCacheSoftReference.get() != null) { |
||||
return fieldCacheSoftReference.get(); |
||||
} |
||||
declaredFields(clazz, convertAllFiled); |
||||
} |
||||
return FIELD_CACHE.get(clazz).get(); |
||||
} |
||||
|
||||
private static void declaredFields(Class clazz, Boolean convertAllFiled) { |
||||
List<Field> tempFieldList = new ArrayList<Field>(); |
||||
Class tempClass = clazz; |
||||
// When the parent class is null, it indicates that the parent class (Object class) has reached the top
|
||||
// level.
|
||||
while (tempClass != null && tempClass != BaseRowModel.class) { |
||||
Collections.addAll(tempFieldList, tempClass.getDeclaredFields()); |
||||
// Get the parent class and give it to yourself
|
||||
tempClass = tempClass.getSuperclass(); |
||||
} |
||||
// Screening of field
|
||||
List<Field> defaultFieldList = new ArrayList<Field>(); |
||||
Map<Integer, Field> customFiledMap = new TreeMap<Integer, Field>(); |
||||
List<Field> allFieldList = new ArrayList<Field>(); |
||||
Map<String, Field> ignoreMap = new HashMap<String, Field>(16); |
||||
|
||||
ExcelIgnoreUnannotated excelIgnoreUnannotated = |
||||
(ExcelIgnoreUnannotated)clazz.getAnnotation(ExcelIgnoreUnannotated.class); |
||||
for (Field field : tempFieldList) { |
||||
ExcelIgnore excelIgnore = field.getAnnotation(ExcelIgnore.class); |
||||
if (excelIgnore != null) { |
||||
ignoreMap.put(field.getName(), field); |
||||
continue; |
||||
} |
||||
ExcelProperty excelProperty = field.getAnnotation(ExcelProperty.class); |
||||
boolean noExcelProperty = excelProperty == null |
||||
&& ((convertAllFiled != null && !convertAllFiled) || excelIgnoreUnannotated != null); |
||||
if (noExcelProperty) { |
||||
ignoreMap.put(field.getName(), field); |
||||
continue; |
||||
} |
||||
boolean isStaticFinalOrTransient = |
||||
(Modifier.isStatic(field.getModifiers()) && Modifier.isFinal(field.getModifiers())) |
||||
|| Modifier.isTransient(field.getModifiers()); |
||||
if (excelProperty == null && isStaticFinalOrTransient) { |
||||
ignoreMap.put(field.getName(), field); |
||||
continue; |
||||
} |
||||
if (excelProperty == null || excelProperty.index() < 0) { |
||||
defaultFieldList.add(field); |
||||
allFieldList.add(field); |
||||
continue; |
||||
} |
||||
if (customFiledMap.containsKey(excelProperty.index())) { |
||||
throw new ExcelCommonException("The index of '" + customFiledMap.get(excelProperty.index()).getName() |
||||
+ "' and '" + field.getName() + "' must be inconsistent"); |
||||
} |
||||
customFiledMap.put(excelProperty.index(), field); |
||||
allFieldList.add(field); |
||||
} |
||||
|
||||
FIELD_CACHE.put(clazz, |
||||
new SoftReference<FieldCache>(new FieldCache(defaultFieldList, customFiledMap, allFieldList, ignoreMap))); |
||||
} |
||||
|
||||
private static class FieldCache { |
||||
private List<Field> defaultFieldList; |
||||
private Map<Integer, Field> customFiledMap; |
||||
private List<Field> allFieldList; |
||||
private Map<String, Field> ignoreMap; |
||||
|
||||
public FieldCache(List<Field> defaultFieldList, Map<Integer, Field> customFiledMap, List<Field> allFieldList, |
||||
Map<String, Field> ignoreMap) { |
||||
this.defaultFieldList = defaultFieldList; |
||||
this.customFiledMap = customFiledMap; |
||||
this.allFieldList = allFieldList; |
||||
this.ignoreMap = ignoreMap; |
||||
} |
||||
|
||||
public List<Field> getDefaultFieldList() { |
||||
return defaultFieldList; |
||||
} |
||||
|
||||
public Map<Integer, Field> getCustomFiledMap() { |
||||
return customFiledMap; |
||||
} |
||||
|
||||
public List<Field> getAllFieldList() { |
||||
return allFieldList; |
||||
} |
||||
|
||||
public Map<String, Field> getIgnoreMap() { |
||||
return ignoreMap; |
||||
} |
||||
|
||||
} |
||||
} |
@ -0,0 +1,46 @@
|
||||
package com.alibaba.excel.util; |
||||
|
||||
import com.alibaba.excel.metadata.DataFormatter; |
||||
import com.alibaba.excel.metadata.GlobalConfiguration; |
||||
|
||||
/** |
||||
* Convert number data, including date. |
||||
* |
||||
* @author Jiaju Zhuang |
||||
**/ |
||||
public class NumberDataFormatterUtils { |
||||
/** |
||||
* Cache DataFormatter. |
||||
*/ |
||||
private static final ThreadLocal<DataFormatter> DATA_FORMATTER_THREAD_LOCAL = new ThreadLocal<DataFormatter>(); |
||||
|
||||
/** |
||||
* Format number data. |
||||
* |
||||
* @param data |
||||
* @param dataFormat |
||||
* Not null. |
||||
* @param dataFormatString |
||||
* @param globalConfiguration |
||||
* @return |
||||
*/ |
||||
public static String format(Double data, Integer dataFormat, String dataFormatString, |
||||
GlobalConfiguration globalConfiguration) { |
||||
DataFormatter dataFormatter = DATA_FORMATTER_THREAD_LOCAL.get(); |
||||
if (dataFormatter == null) { |
||||
if (globalConfiguration != null) { |
||||
dataFormatter = |
||||
new DataFormatter(globalConfiguration.getLocale(), globalConfiguration.getUse1904windowing()); |
||||
} else { |
||||
dataFormatter = new DataFormatter(); |
||||
} |
||||
DATA_FORMATTER_THREAD_LOCAL.set(dataFormatter); |
||||
} |
||||
return dataFormatter.format(data, dataFormat, dataFormatString); |
||||
|
||||
} |
||||
|
||||
public static void removeThreadLocalCache() { |
||||
DATA_FORMATTER_THREAD_LOCAL.remove(); |
||||
} |
||||
} |
@ -0,0 +1,104 @@
|
||||
package com.alibaba.excel.write.builder; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.Collection; |
||||
|
||||
import com.alibaba.excel.metadata.AbstractParameterBuilder; |
||||
import com.alibaba.excel.write.handler.WriteHandler; |
||||
import com.alibaba.excel.write.metadata.WriteBasicParameter; |
||||
|
||||
/** |
||||
* Build ExcelBuilder |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public abstract class AbstractExcelWriterParameterBuilder<T extends AbstractExcelWriterParameterBuilder, |
||||
C extends WriteBasicParameter> extends AbstractParameterBuilder<T, C> { |
||||
/** |
||||
* Writes the head relative to the existing contents of the sheet. Indexes are zero-based. |
||||
* |
||||
* @param relativeHeadRowIndex |
||||
* @return |
||||
*/ |
||||
public T relativeHeadRowIndex(Integer relativeHeadRowIndex) { |
||||
parameter().setRelativeHeadRowIndex(relativeHeadRowIndex); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* Need Head |
||||
*/ |
||||
public T needHead(Boolean needHead) { |
||||
parameter().setNeedHead(needHead); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* Custom write handler |
||||
* |
||||
* @param writeHandler |
||||
* @return |
||||
*/ |
||||
public T registerWriteHandler(WriteHandler writeHandler) { |
||||
if (parameter().getCustomWriteHandlerList() == null) { |
||||
parameter().setCustomWriteHandlerList(new ArrayList<WriteHandler>()); |
||||
} |
||||
parameter().getCustomWriteHandlerList().add(writeHandler); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* Use the default style.Default is true. |
||||
* |
||||
* @param useDefaultStyle |
||||
* @return |
||||
*/ |
||||
public T useDefaultStyle(Boolean useDefaultStyle) { |
||||
parameter().setUseDefaultStyle(useDefaultStyle); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* Whether to automatically merge headers.Default is true. |
||||
* |
||||
* @param automaticMergeHead |
||||
* @return |
||||
*/ |
||||
public T automaticMergeHead(Boolean automaticMergeHead) { |
||||
parameter().setAutomaticMergeHead(automaticMergeHead); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* Ignore the custom columns. |
||||
*/ |
||||
public T excludeColumnIndexes(Collection<Integer> excludeColumnIndexes) { |
||||
parameter().setExcludeColumnIndexes(excludeColumnIndexes); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* Ignore the custom columns. |
||||
*/ |
||||
public T excludeColumnFiledNames(Collection<String> excludeColumnFiledNames) { |
||||
parameter().setExcludeColumnFiledNames(excludeColumnFiledNames); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* Only output the custom columns. |
||||
*/ |
||||
public T includeColumnIndexes(Collection<Integer> includeColumnIndexes) { |
||||
parameter().setIncludeColumnIndexes(includeColumnIndexes); |
||||
return self(); |
||||
} |
||||
|
||||
/** |
||||
* Only output the custom columns. |
||||
*/ |
||||
public T includeColumnFiledNames(Collection<String> includeColumnFiledNames) { |
||||
parameter().setIncludeColumnFiledNames(includeColumnFiledNames); |
||||
return self(); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,16 @@
|
||||
package com.alibaba.easyexcel.test.core.dataformat; |
||||
|
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
@Data |
||||
public class DateFormatData { |
||||
private String date; |
||||
private String dateStringCn; |
||||
private String dateStringUs; |
||||
private String number; |
||||
private String numberStringCn; |
||||
private String numberStringUs; |
||||
} |
@ -0,0 +1,61 @@
|
||||
package com.alibaba.easyexcel.test.core.dataformat; |
||||
|
||||
import java.io.File; |
||||
import java.util.List; |
||||
import java.util.Locale; |
||||
|
||||
import org.junit.Assert; |
||||
import org.junit.BeforeClass; |
||||
import org.junit.Test; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
|
||||
import com.alibaba.easyexcel.test.util.TestFileUtil; |
||||
import com.alibaba.excel.EasyExcel; |
||||
|
||||
/** |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class DateFormatTest { |
||||
private static final Logger LOGGER = LoggerFactory.getLogger(DateFormatTest.class); |
||||
|
||||
private static File file07; |
||||
private static File file03; |
||||
|
||||
@BeforeClass |
||||
public static void init() { |
||||
file07 = TestFileUtil.readFile("dataformat" + File.separator + "dataformat.xlsx"); |
||||
file03 = TestFileUtil.readFile("dataformat" + File.separator + "dataformat.xls"); |
||||
} |
||||
|
||||
@Test |
||||
public void t01Read07() { |
||||
readCn(file07); |
||||
readUs(file07); |
||||
} |
||||
|
||||
@Test |
||||
public void t02Read03() { |
||||
readCn(file03); |
||||
readUs(file03); |
||||
} |
||||
|
||||
private void readCn(File file) { |
||||
List<DateFormatData> list = |
||||
EasyExcel.read(file, DateFormatData.class, null).locale(Locale.CHINA).sheet().doReadSync(); |
||||
for (DateFormatData data : list) { |
||||
Assert.assertEquals(data.getDate(), data.getDateStringCn()); |
||||
Assert.assertEquals(data.getNumber(), data.getNumberStringCn()); |
||||
} |
||||
} |
||||
|
||||
private void readUs(File file) { |
||||
List<DateFormatData> list = |
||||
EasyExcel.read(file, DateFormatData.class, null).locale(Locale.US).sheet().doReadSync(); |
||||
for (DateFormatData data : list) { |
||||
Assert.assertEquals(data.getDate(), data.getDateStringUs()); |
||||
Assert.assertEquals(data.getNumber(), data.getNumberStringUs()); |
||||
} |
||||
} |
||||
} |