forked from fanruan/easyexcel
Jiaju Zhuang
5 years ago
committed by
GitHub
180 changed files with 8542 additions and 2434 deletions
@ -1,33 +0,0 @@
|
||||
package com.alibaba.excel.analysis.v03; |
||||
|
||||
import com.alibaba.excel.metadata.CellData; |
||||
|
||||
/** |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public abstract class AbstractXlsRecordHandler implements XlsRecordHandler { |
||||
protected int row = -1; |
||||
protected int column = -1; |
||||
protected CellData cellData; |
||||
|
||||
@Override |
||||
public int getRow() { |
||||
return row; |
||||
} |
||||
|
||||
@Override |
||||
public int getColumn() { |
||||
return column; |
||||
} |
||||
|
||||
@Override |
||||
public CellData getCellData() { |
||||
return cellData; |
||||
} |
||||
|
||||
@Override |
||||
public int compareTo(XlsRecordHandler o) { |
||||
return this.getOrder() - o.getOrder(); |
||||
} |
||||
} |
@ -0,0 +1,8 @@
|
||||
package com.alibaba.excel.analysis.v03; |
||||
|
||||
/** |
||||
* Need to ignore the current handler without reading the current sheet. |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public interface IgnorableXlsRecordHandler extends XlsRecordHandler {} |
@ -0,0 +1,19 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.Record; |
||||
|
||||
import com.alibaba.excel.analysis.v03.XlsRecordHandler; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
|
||||
/** |
||||
* Abstract xls record handler |
||||
* |
||||
* @author Jiaju Zhuang |
||||
**/ |
||||
public abstract class AbstractXlsRecordHandler implements XlsRecordHandler { |
||||
|
||||
@Override |
||||
public boolean support(XlsReadContext xlsReadContext, Record record) { |
||||
return true; |
||||
} |
||||
} |
@ -1,47 +0,0 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.BlankRecord; |
||||
import org.apache.poi.hssf.record.BoolErrRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
|
||||
import com.alibaba.excel.analysis.v03.AbstractXlsRecordHandler; |
||||
import com.alibaba.excel.enums.CellDataTypeEnum; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class BlankOrErrorRecordHandler extends AbstractXlsRecordHandler { |
||||
|
||||
@Override |
||||
public boolean support(Record record) { |
||||
return BlankRecord.sid == record.getSid() || BoolErrRecord.sid == record.getSid(); |
||||
} |
||||
|
||||
@Override |
||||
public void processRecord(Record record) { |
||||
if (record.getSid() == BlankRecord.sid) { |
||||
BlankRecord br = (BlankRecord)record; |
||||
this.row = br.getRow(); |
||||
this.column = br.getColumn(); |
||||
this.cellData = new CellData(CellDataTypeEnum.EMPTY); |
||||
} else if (record.getSid() == BoolErrRecord.sid) { |
||||
BoolErrRecord ber = (BoolErrRecord)record; |
||||
this.row = ber.getRow(); |
||||
this.column = ber.getColumn(); |
||||
this.cellData = new CellData(ber.getBooleanValue()); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void init() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public int getOrder() { |
||||
return 0; |
||||
} |
||||
} |
@ -0,0 +1,23 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.BlankRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
|
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class BlankRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
|
||||
@Override |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
BlankRecord br = (BlankRecord)record; |
||||
xlsReadContext.xlsReadSheetHolder().getCellMap().put((int)br.getColumn(), |
||||
CellData.newEmptyInstance(br.getRow(), (int)br.getColumn())); |
||||
} |
||||
} |
@ -0,0 +1,25 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.BoolErrRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
|
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
import com.alibaba.excel.enums.RowTypeEnum; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class BoolErrRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
|
||||
@Override |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
BoolErrRecord ber = (BoolErrRecord)record; |
||||
xlsReadContext.xlsReadSheetHolder().getCellMap().put((int)ber.getColumn(), |
||||
CellData.newInstance(ber.getBooleanValue(), ber.getRow(), (int)ber.getColumn())); |
||||
xlsReadContext.xlsReadSheetHolder().setTempRowType(RowTypeEnum.DATA); |
||||
} |
||||
} |
@ -0,0 +1,21 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.BoundSheetRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
|
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class BoundSheetRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
|
||||
@Override |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
BoundSheetRecord bsr = (BoundSheetRecord)record; |
||||
xlsReadContext.xlsReadWorkbookHolder().getBoundSheetRecordList().add((BoundSheetRecord)record); |
||||
} |
||||
} |
@ -0,0 +1,41 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import java.util.LinkedHashMap; |
||||
|
||||
import org.apache.poi.hssf.eventusermodel.dummyrecord.LastCellOfRowDummyRecord; |
||||
import org.apache.poi.hssf.eventusermodel.dummyrecord.MissingCellDummyRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
|
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
import com.alibaba.excel.enums.RowTypeEnum; |
||||
import com.alibaba.excel.metadata.Cell; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
import com.alibaba.excel.read.metadata.holder.ReadRowHolder; |
||||
import com.alibaba.excel.read.metadata.holder.xls.XlsReadSheetHolder; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class DummyRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
@Override |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
XlsReadSheetHolder xlsReadSheetHolder = xlsReadContext.xlsReadSheetHolder(); |
||||
if (record instanceof LastCellOfRowDummyRecord) { |
||||
// End of this row
|
||||
LastCellOfRowDummyRecord lcrdr = (LastCellOfRowDummyRecord)record; |
||||
xlsReadSheetHolder.setRowIndex(lcrdr.getRow()); |
||||
xlsReadContext.readRowHolder(new ReadRowHolder(lcrdr.getRow(), xlsReadSheetHolder.getTempRowType(), |
||||
xlsReadContext.readSheetHolder().getGlobalConfiguration(), xlsReadSheetHolder.getCellMap())); |
||||
xlsReadContext.analysisEventProcessor().endRow(xlsReadContext); |
||||
xlsReadSheetHolder.setCellMap(new LinkedHashMap<Integer, Cell>()); |
||||
xlsReadSheetHolder.setTempRowType(RowTypeEnum.EMPTY); |
||||
} else if (record instanceof MissingCellDummyRecord) { |
||||
MissingCellDummyRecord mcdr = (MissingCellDummyRecord)record; |
||||
xlsReadSheetHolder.getCellMap().put(mcdr.getColumn(), |
||||
CellData.newEmptyInstance(mcdr.getRow(), mcdr.getColumn())); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,21 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.Record; |
||||
|
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class EofRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
|
||||
@Override |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
if (xlsReadContext.readSheetHolder() != null) { |
||||
xlsReadContext.analysisEventProcessor().endSheet(xlsReadContext); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,30 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.HyperlinkRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
|
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
import com.alibaba.excel.enums.CellExtraTypeEnum; |
||||
import com.alibaba.excel.metadata.CellExtra; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class HyperlinkRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
@Override |
||||
public boolean support(XlsReadContext xlsReadContext, Record record) { |
||||
return xlsReadContext.readWorkbookHolder().getExtraReadSet().contains(CellExtraTypeEnum.HYPERLINK); |
||||
} |
||||
|
||||
@Override |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
HyperlinkRecord hr = (HyperlinkRecord)record; |
||||
CellExtra cellExtra = new CellExtra(CellExtraTypeEnum.HYPERLINK, hr.getAddress(), hr.getFirstRow(), |
||||
hr.getLastRow(), hr.getFirstColumn(), hr.getLastColumn()); |
||||
xlsReadContext.xlsReadSheetHolder().setCellExtra(cellExtra); |
||||
xlsReadContext.analysisEventProcessor().extra(xlsReadContext); |
||||
} |
||||
} |
@ -0,0 +1,42 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import java.util.Map; |
||||
|
||||
import org.apache.poi.hssf.record.LabelSSTRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
|
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.cache.ReadCache; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
import com.alibaba.excel.enums.RowTypeEnum; |
||||
import com.alibaba.excel.metadata.Cell; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class LabelSstRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
|
||||
@Override |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
LabelSSTRecord lsrec = (LabelSSTRecord)record; |
||||
ReadCache readCache = xlsReadContext.readWorkbookHolder().getReadCache(); |
||||
Map<Integer, Cell> cellMap = xlsReadContext.xlsReadSheetHolder().getCellMap(); |
||||
if (readCache == null) { |
||||
cellMap.put((int)lsrec.getColumn(), CellData.newEmptyInstance(lsrec.getRow(), (int)lsrec.getColumn())); |
||||
return; |
||||
} |
||||
String data = readCache.get(lsrec.getSSTIndex()); |
||||
if (data == null) { |
||||
cellMap.put((int)lsrec.getColumn(), CellData.newEmptyInstance(lsrec.getRow(), (int)lsrec.getColumn())); |
||||
return; |
||||
} |
||||
if (xlsReadContext.currentReadHolder().globalConfiguration().getAutoTrim()) { |
||||
data = data.trim(); |
||||
} |
||||
cellMap.put((int)lsrec.getColumn(), CellData.newInstance(data, lsrec.getRow(), (int)lsrec.getColumn())); |
||||
xlsReadContext.xlsReadSheetHolder().setTempRowType(RowTypeEnum.DATA); |
||||
} |
||||
} |
@ -0,0 +1,35 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.MergeCellsRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
import org.apache.poi.ss.util.CellRangeAddress; |
||||
|
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
import com.alibaba.excel.enums.CellExtraTypeEnum; |
||||
import com.alibaba.excel.metadata.CellExtra; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class MergeCellsRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
|
||||
@Override |
||||
public boolean support(XlsReadContext xlsReadContext, Record record) { |
||||
return xlsReadContext.readWorkbookHolder().getExtraReadSet().contains(CellExtraTypeEnum.MERGE); |
||||
} |
||||
|
||||
@Override |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
MergeCellsRecord mcr = (MergeCellsRecord)record; |
||||
for (int i = 0; i < mcr.getNumAreas(); i++) { |
||||
CellRangeAddress cellRangeAddress = mcr.getAreaAt(i); |
||||
CellExtra cellExtra = new CellExtra(CellExtraTypeEnum.MERGE, null, cellRangeAddress.getFirstRow(), |
||||
cellRangeAddress.getLastRow(), cellRangeAddress.getFirstColumn(), cellRangeAddress.getLastColumn()); |
||||
xlsReadContext.xlsReadSheetHolder().setCellExtra(cellExtra); |
||||
xlsReadContext.analysisEventProcessor().extra(xlsReadContext); |
||||
} |
||||
} |
||||
} |
@ -1,38 +0,0 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.eventusermodel.dummyrecord.MissingCellDummyRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
|
||||
import com.alibaba.excel.analysis.v03.AbstractXlsRecordHandler; |
||||
import com.alibaba.excel.enums.CellDataTypeEnum; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class MissingCellDummyRecordHandler extends AbstractXlsRecordHandler { |
||||
@Override |
||||
public boolean support(Record record) { |
||||
return record instanceof MissingCellDummyRecord; |
||||
} |
||||
|
||||
@Override |
||||
public void init() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void processRecord(Record record) { |
||||
MissingCellDummyRecord mcdr = (MissingCellDummyRecord)record; |
||||
this.row = mcdr.getRow(); |
||||
this.column = mcdr.getColumn(); |
||||
this.cellData = new CellData(CellDataTypeEnum.EMPTY); |
||||
} |
||||
|
||||
@Override |
||||
public int getOrder() { |
||||
return 1; |
||||
} |
||||
} |
@ -0,0 +1,30 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.CommonObjectDataSubRecord; |
||||
import org.apache.poi.hssf.record.ObjRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
import org.apache.poi.hssf.record.SubRecord; |
||||
|
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class ObjRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
@Override |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
ObjRecord or = (ObjRecord)record; |
||||
for (SubRecord subRecord : or.getSubRecords()) { |
||||
if (subRecord instanceof CommonObjectDataSubRecord) { |
||||
CommonObjectDataSubRecord codsr = (CommonObjectDataSubRecord)subRecord; |
||||
if (CommonObjectDataSubRecord.OBJECT_TYPE_COMMENT == codsr.getObjectType()) { |
||||
xlsReadContext.xlsReadSheetHolder().setTempObjectIndex(codsr.getObjectId()); |
||||
} |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
} |
@ -1,49 +1,20 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.LabelSSTRecord; |
||||
import org.apache.poi.hssf.record.Record; |
||||
import org.apache.poi.hssf.record.SSTRecord; |
||||
|
||||
import com.alibaba.excel.analysis.v03.AbstractXlsRecordHandler; |
||||
import com.alibaba.excel.enums.CellDataTypeEnum; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.cache.XlsCache; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class SstRecordHandler extends AbstractXlsRecordHandler { |
||||
private SSTRecord sstRecord; |
||||
|
||||
@Override |
||||
public boolean support(Record record) { |
||||
return SSTRecord.sid == record.getSid() || LabelSSTRecord.sid == record.getSid(); |
||||
} |
||||
|
||||
@Override |
||||
public void processRecord(Record record) { |
||||
if (record.getSid() == SSTRecord.sid) { |
||||
sstRecord = (SSTRecord)record; |
||||
} else if (record.getSid() == LabelSSTRecord.sid) { |
||||
LabelSSTRecord lsrec = (LabelSSTRecord)record; |
||||
this.row = lsrec.getRow(); |
||||
this.column = lsrec.getColumn(); |
||||
if (sstRecord == null) { |
||||
this.cellData = new CellData(CellDataTypeEnum.EMPTY); |
||||
} else { |
||||
this.cellData = new CellData(sstRecord.getString(lsrec.getSSTIndex()).toString()); |
||||
} |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void init() { |
||||
|
||||
} |
||||
|
||||
public class SstRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
@Override |
||||
public int getOrder() { |
||||
return 0; |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
xlsReadContext.readWorkbookHolder().setReadCache(new XlsCache((SSTRecord)record)); |
||||
} |
||||
} |
||||
|
@ -0,0 +1,35 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.Record; |
||||
import org.apache.poi.hssf.record.StringRecord; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
|
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
import com.alibaba.excel.read.metadata.holder.xls.XlsReadSheetHolder; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class StringRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
private static final Logger LOGGER = LoggerFactory.getLogger(StringRecordHandler.class); |
||||
|
||||
@Override |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
// String for formula
|
||||
StringRecord srec = (StringRecord)record; |
||||
XlsReadSheetHolder xlsReadSheetHolder = xlsReadContext.xlsReadSheetHolder(); |
||||
CellData tempCellData = xlsReadSheetHolder.getTempCellData(); |
||||
if (tempCellData == null) { |
||||
LOGGER.warn("String type formula but no value found."); |
||||
return; |
||||
} |
||||
tempCellData.setStringValue(srec.getString()); |
||||
xlsReadSheetHolder.getCellMap().put(tempCellData.getColumnIndex(), tempCellData); |
||||
xlsReadSheetHolder.setTempCellData(null); |
||||
} |
||||
} |
@ -0,0 +1,38 @@
|
||||
package com.alibaba.excel.analysis.v03.handlers; |
||||
|
||||
import org.apache.poi.hssf.record.Record; |
||||
import org.apache.poi.hssf.record.TextObjectRecord; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
|
||||
import com.alibaba.excel.analysis.v03.IgnorableXlsRecordHandler; |
||||
import com.alibaba.excel.context.xls.XlsReadContext; |
||||
import com.alibaba.excel.enums.CellExtraTypeEnum; |
||||
import com.alibaba.excel.read.metadata.holder.xls.XlsReadSheetHolder; |
||||
|
||||
/** |
||||
* Record handler |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class TextObjectRecordHandler extends AbstractXlsRecordHandler implements IgnorableXlsRecordHandler { |
||||
private static final Logger LOGGER = LoggerFactory.getLogger(TextObjectRecordHandler.class); |
||||
|
||||
@Override |
||||
public boolean support(XlsReadContext xlsReadContext, Record record) { |
||||
return xlsReadContext.readWorkbookHolder().getExtraReadSet().contains(CellExtraTypeEnum.COMMENT); |
||||
} |
||||
|
||||
@Override |
||||
public void processRecord(XlsReadContext xlsReadContext, Record record) { |
||||
TextObjectRecord tor = (TextObjectRecord)record; |
||||
XlsReadSheetHolder xlsReadSheetHolder = xlsReadContext.xlsReadSheetHolder(); |
||||
Integer tempObjectIndex = xlsReadSheetHolder.getTempObjectIndex(); |
||||
if (tempObjectIndex == null) { |
||||
LOGGER.debug("tempObjectIndex is null."); |
||||
return; |
||||
} |
||||
xlsReadSheetHolder.getObjectCacheMap().put(tempObjectIndex, tor.getStr().getString()); |
||||
xlsReadSheetHolder.setTempObjectIndex(null); |
||||
} |
||||
} |
@ -1,37 +0,0 @@
|
||||
package com.alibaba.excel.analysis.v07; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
|
||||
/** |
||||
* Cell handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public interface XlsxCellHandler { |
||||
/** |
||||
* Which tags are supported |
||||
* |
||||
* @param name |
||||
* Tag name |
||||
* @return Support parsing or not |
||||
*/ |
||||
boolean support(String name); |
||||
|
||||
/** |
||||
* Start handle |
||||
* |
||||
* @param name |
||||
* Tag name |
||||
* @param attributes |
||||
* Tag attributes |
||||
*/ |
||||
void startHandle(String name, Attributes attributes); |
||||
|
||||
/** |
||||
* End handle |
||||
* |
||||
* @param name |
||||
* Tag name |
||||
*/ |
||||
void endHandle(String name); |
||||
} |
@ -1,27 +0,0 @@
|
||||
package com.alibaba.excel.analysis.v07; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
import org.apache.poi.xssf.model.StylesTable; |
||||
|
||||
import com.alibaba.excel.analysis.v07.handlers.CountRowCellHandler; |
||||
import com.alibaba.excel.analysis.v07.handlers.DefaultCellHandler; |
||||
import com.alibaba.excel.analysis.v07.handlers.ProcessResultCellHandler; |
||||
import com.alibaba.excel.context.AnalysisContext; |
||||
|
||||
/** |
||||
* Build handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public class XlsxHandlerFactory { |
||||
public static List<XlsxCellHandler> buildCellHandlers(AnalysisContext analysisContext, StylesTable stylesTable) { |
||||
List<XlsxCellHandler> result = new ArrayList<XlsxCellHandler>(); |
||||
result.add(new CountRowCellHandler(analysisContext)); |
||||
DefaultCellHandler defaultCellHandler = new DefaultCellHandler(analysisContext, stylesTable); |
||||
result.add(defaultCellHandler); |
||||
result.add(new ProcessResultCellHandler(analysisContext, defaultCellHandler)); |
||||
return result; |
||||
} |
||||
} |
@ -1,55 +0,0 @@
|
||||
package com.alibaba.excel.analysis.v07; |
||||
|
||||
import java.util.List; |
||||
|
||||
import org.apache.poi.xssf.model.StylesTable; |
||||
import org.xml.sax.Attributes; |
||||
import org.xml.sax.SAXException; |
||||
import org.xml.sax.helpers.DefaultHandler; |
||||
|
||||
import com.alibaba.excel.context.AnalysisContext; |
||||
|
||||
/** |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public class XlsxRowHandler extends DefaultHandler { |
||||
|
||||
private List<XlsxCellHandler> cellHandlers; |
||||
private XlsxRowResultHolder rowResultHolder; |
||||
|
||||
public XlsxRowHandler(AnalysisContext analysisContext, StylesTable stylesTable) { |
||||
this.cellHandlers = XlsxHandlerFactory.buildCellHandlers(analysisContext, stylesTable); |
||||
for (XlsxCellHandler cellHandler : cellHandlers) { |
||||
if (cellHandler instanceof XlsxRowResultHolder) { |
||||
this.rowResultHolder = (XlsxRowResultHolder)cellHandler; |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void startElement(String uri, String localName, String name, Attributes attributes) throws SAXException { |
||||
for (XlsxCellHandler cellHandler : cellHandlers) { |
||||
if (cellHandler.support(name)) { |
||||
cellHandler.startHandle(name, attributes); |
||||
} |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void endElement(String uri, String localName, String name) throws SAXException { |
||||
for (XlsxCellHandler cellHandler : cellHandlers) { |
||||
if (cellHandler.support(name)) { |
||||
cellHandler.endHandle(name); |
||||
} |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void characters(char[] ch, int start, int length) throws SAXException { |
||||
if (rowResultHolder != null) { |
||||
rowResultHolder.appendCurrentCellValue(ch, start, length); |
||||
} |
||||
} |
||||
} |
@ -1,33 +0,0 @@
|
||||
package com.alibaba.excel.analysis.v07; |
||||
|
||||
import java.util.Map; |
||||
|
||||
import com.alibaba.excel.metadata.CellData; |
||||
|
||||
/** |
||||
* Result holder |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public interface XlsxRowResultHolder { |
||||
/** |
||||
* Clear Result |
||||
*/ |
||||
void clearResult(); |
||||
|
||||
/** |
||||
* Append current 'cellValue' |
||||
* |
||||
* @param ch |
||||
* @param start |
||||
* @param length |
||||
*/ |
||||
void appendCurrentCellValue(char[] ch, int start, int length); |
||||
|
||||
/** |
||||
* Get row content |
||||
* |
||||
* @return |
||||
*/ |
||||
Map<Integer, CellData> getCurRowContent(); |
||||
} |
@ -0,0 +1,66 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import java.math.BigDecimal; |
||||
|
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
import com.alibaba.excel.enums.CellDataTypeEnum; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
import com.alibaba.excel.read.metadata.holder.xlsx.XlsxReadSheetHolder; |
||||
import com.alibaba.excel.util.BooleanUtils; |
||||
|
||||
/** |
||||
* Cell Value Handler |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public abstract class AbstractCellValueTagHandler extends AbstractXlsxTagHandler { |
||||
|
||||
@Override |
||||
public void endElement(XlsxReadContext xlsxReadContext, String name) { |
||||
XlsxReadSheetHolder xlsxReadSheetHolder = xlsxReadContext.xlsxReadSheetHolder(); |
||||
CellData tempCellData = xlsxReadSheetHolder.getTempCellData(); |
||||
StringBuilder tempData = xlsxReadSheetHolder.getTempData(); |
||||
CellDataTypeEnum oldType = tempCellData.getType(); |
||||
switch (oldType) { |
||||
case DIRECT_STRING: |
||||
case STRING: |
||||
case ERROR: |
||||
tempCellData.setStringValue(tempData.toString()); |
||||
break; |
||||
case BOOLEAN: |
||||
tempCellData.setBooleanValue(BooleanUtils.valueOf(tempData.toString())); |
||||
break; |
||||
case NUMBER: |
||||
case EMPTY: |
||||
tempCellData.setType(CellDataTypeEnum.NUMBER); |
||||
tempCellData.setNumberValue(new BigDecimal(tempData.toString())); |
||||
break; |
||||
default: |
||||
throw new IllegalStateException("Cannot set values now"); |
||||
} |
||||
|
||||
// set string value
|
||||
setStringValue(xlsxReadContext); |
||||
|
||||
if (tempCellData.getStringValue() != null |
||||
&& xlsxReadContext.currentReadHolder().globalConfiguration().getAutoTrim()) { |
||||
tempCellData.setStringValue(tempCellData.getStringValue()); |
||||
} |
||||
|
||||
tempCellData.checkEmpty(); |
||||
xlsxReadSheetHolder.getCellMap().put(xlsxReadSheetHolder.getColumnIndex(), tempCellData); |
||||
} |
||||
|
||||
@Override |
||||
public void characters(XlsxReadContext xlsxReadContext, char[] ch, int start, int length) { |
||||
xlsxReadContext.xlsxReadSheetHolder().getTempData().append(ch, start, length); |
||||
} |
||||
|
||||
/** |
||||
* Set string value. |
||||
* |
||||
* @param xlsxReadContext |
||||
*/ |
||||
protected abstract void setStringValue(XlsxReadContext xlsxReadContext); |
||||
|
||||
} |
@ -0,0 +1,32 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
|
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
|
||||
/** |
||||
* Abstract tag handler |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public abstract class AbstractXlsxTagHandler implements XlsxTagHandler { |
||||
@Override |
||||
public boolean support(XlsxReadContext xlsxReadContext) { |
||||
return true; |
||||
} |
||||
|
||||
@Override |
||||
public void startElement(XlsxReadContext xlsxReadContext, String name, Attributes attributes) { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void endElement(XlsxReadContext xlsxReadContext, String name) { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void characters(XlsxReadContext xlsxReadContext, char[] ch, int start, int length) { |
||||
|
||||
} |
||||
} |
@ -0,0 +1,32 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
|
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
import com.alibaba.excel.read.metadata.holder.xlsx.XlsxReadSheetHolder; |
||||
|
||||
/** |
||||
* Cell Handler |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public class CellFormulaTagHandler extends AbstractXlsxTagHandler { |
||||
|
||||
@Override |
||||
public void startElement(XlsxReadContext xlsxReadContext, String name, Attributes attributes) { |
||||
XlsxReadSheetHolder xlsxReadSheetHolder = xlsxReadContext.xlsxReadSheetHolder(); |
||||
xlsxReadSheetHolder.getTempCellData().setFormula(Boolean.TRUE); |
||||
xlsxReadSheetHolder.setTempFormula(new StringBuilder()); |
||||
} |
||||
|
||||
@Override |
||||
public void endElement(XlsxReadContext xlsxReadContext, String name) { |
||||
XlsxReadSheetHolder xlsxReadSheetHolder = xlsxReadContext.xlsxReadSheetHolder(); |
||||
xlsxReadSheetHolder.getTempCellData().setFormulaValue(xlsxReadSheetHolder.getTempFormula().toString()); |
||||
} |
||||
|
||||
@Override |
||||
public void characters(XlsxReadContext xlsxReadContext, char[] ch, int start, int length) { |
||||
xlsxReadContext.xlsxReadSheetHolder().getTempFormula().append(ch, start, length); |
||||
} |
||||
} |
@ -0,0 +1,23 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import org.apache.poi.xssf.usermodel.XSSFRichTextString; |
||||
|
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
|
||||
/** |
||||
* Cell inline string value handler |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public class CellInlineStringValueTagHandler extends AbstractCellValueTagHandler { |
||||
|
||||
@Override |
||||
protected void setStringValue(XlsxReadContext xlsxReadContext) { |
||||
// This is a special form of string
|
||||
CellData tempCellData = xlsxReadContext.xlsxReadSheetHolder().getTempCellData(); |
||||
XSSFRichTextString richTextString = new XSSFRichTextString(tempCellData.getStringValue()); |
||||
tempCellData.setStringValue(richTextString.toString()); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,57 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import org.apache.poi.xssf.usermodel.XSSFCellStyle; |
||||
import org.xml.sax.Attributes; |
||||
|
||||
import com.alibaba.excel.constant.BuiltinFormats; |
||||
import com.alibaba.excel.constant.ExcelXmlConstants; |
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
import com.alibaba.excel.enums.CellDataTypeEnum; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
import com.alibaba.excel.read.metadata.holder.xlsx.XlsxReadSheetHolder; |
||||
import com.alibaba.excel.util.PositionUtils; |
||||
import com.alibaba.excel.util.StringUtils; |
||||
|
||||
/** |
||||
* Cell Handler |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public class CellTagHandler extends AbstractXlsxTagHandler { |
||||
|
||||
private static final int DEFAULT_FORMAT_INDEX = 0; |
||||
|
||||
@Override |
||||
public void startElement(XlsxReadContext xlsxReadContext, String name, Attributes attributes) { |
||||
XlsxReadSheetHolder xlsxReadSheetHolder = xlsxReadContext.xlsxReadSheetHolder(); |
||||
xlsxReadSheetHolder.setColumnIndex(PositionUtils.getCol(attributes.getValue(ExcelXmlConstants.ATTRIBUTE_R), |
||||
xlsxReadSheetHolder.getColumnIndex())); |
||||
|
||||
// t="s" ,it's means String
|
||||
// t="str" ,it's means String,but does not need to be read in the 'sharedStrings.xml'
|
||||
// t="inlineStr" ,it's means String
|
||||
// t="b" ,it's means Boolean
|
||||
// t="e" ,it's means Error
|
||||
// t="n" ,it's means Number
|
||||
// t is null ,it's means Empty or Number
|
||||
CellDataTypeEnum type = CellDataTypeEnum.buildFromCellType(attributes.getValue(ExcelXmlConstants.ATTRIBUTE_T)); |
||||
xlsxReadSheetHolder.setTempCellData(new CellData(type)); |
||||
xlsxReadSheetHolder.setTempData(new StringBuilder()); |
||||
|
||||
// Put in data transformation information
|
||||
String dateFormatIndex = attributes.getValue(ExcelXmlConstants.ATTRIBUTE_S); |
||||
Integer dateFormatIndexInteger; |
||||
if (StringUtils.isEmpty(dateFormatIndex)) { |
||||
dateFormatIndexInteger = DEFAULT_FORMAT_INDEX; |
||||
} else { |
||||
dateFormatIndexInteger = Integer.parseInt(dateFormatIndex); |
||||
} |
||||
XSSFCellStyle xssfCellStyle = |
||||
xlsxReadContext.xlsxReadWorkbookHolder().getStylesTable().getStyleAt(dateFormatIndexInteger); |
||||
int dataFormat = xssfCellStyle.getDataFormat(); |
||||
xlsxReadSheetHolder.getTempCellData().setDataFormat(dataFormat); |
||||
xlsxReadSheetHolder.getTempCellData().setDataFormatString(BuiltinFormats.getBuiltinFormat(dataFormat, |
||||
xssfCellStyle.getDataFormatString(), xlsxReadSheetHolder.getGlobalConfiguration().getLocale())); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,34 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
import com.alibaba.excel.enums.CellDataTypeEnum; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
|
||||
/** |
||||
* Cell Value Handler |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public class CellValueTagHandler extends AbstractCellValueTagHandler { |
||||
|
||||
@Override |
||||
protected void setStringValue(XlsxReadContext xlsxReadContext) { |
||||
// Have to go "sharedStrings.xml" and get it
|
||||
CellData tempCellData = xlsxReadContext.xlsxReadSheetHolder().getTempCellData(); |
||||
switch (tempCellData.getType()) { |
||||
case STRING: |
||||
String stringValue = xlsxReadContext.readWorkbookHolder().getReadCache() |
||||
.get(Integer.valueOf(tempCellData.getStringValue())); |
||||
if (stringValue != null && xlsxReadContext.currentReadHolder().globalConfiguration().getAutoTrim()) { |
||||
stringValue = stringValue.trim(); |
||||
} |
||||
tempCellData.setStringValue(stringValue); |
||||
break; |
||||
case DIRECT_STRING: |
||||
tempCellData.setType(CellDataTypeEnum.STRING); |
||||
break; |
||||
default: |
||||
} |
||||
} |
||||
|
||||
} |
@ -1,42 +0,0 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import static com.alibaba.excel.constant.ExcelXmlConstants.DIMENSION; |
||||
import static com.alibaba.excel.constant.ExcelXmlConstants.DIMENSION_REF; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
|
||||
import com.alibaba.excel.analysis.v07.XlsxCellHandler; |
||||
import com.alibaba.excel.context.AnalysisContext; |
||||
|
||||
/** |
||||
* Cell Handler |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public class CountRowCellHandler implements XlsxCellHandler { |
||||
|
||||
private final AnalysisContext analysisContext; |
||||
|
||||
public CountRowCellHandler(AnalysisContext analysisContext) { |
||||
this.analysisContext = analysisContext; |
||||
} |
||||
|
||||
@Override |
||||
public boolean support(String name) { |
||||
return DIMENSION.equals(name); |
||||
} |
||||
|
||||
@Override |
||||
public void startHandle(String name, Attributes attributes) { |
||||
String d = attributes.getValue(DIMENSION_REF); |
||||
String totalStr = d.substring(d.indexOf(":") + 1, d.length()); |
||||
String c = totalStr.toUpperCase().replaceAll("[A-Z]", ""); |
||||
analysisContext.readSheetHolder().setApproximateTotalRowNumber(Integer.parseInt(c)); |
||||
} |
||||
|
||||
@Override |
||||
public void endHandle(String name) { |
||||
|
||||
} |
||||
|
||||
} |
@ -0,0 +1,23 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
|
||||
import com.alibaba.excel.constant.ExcelXmlConstants; |
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
|
||||
/** |
||||
* Cell Handler |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public class CountTagHandler extends AbstractXlsxTagHandler { |
||||
|
||||
@Override |
||||
public void startElement(XlsxReadContext xlsxReadContext, String name, Attributes attributes) { |
||||
String d = attributes.getValue(ExcelXmlConstants.ATTRIBUTE_REF); |
||||
String totalStr = d.substring(d.indexOf(":") + 1, d.length()); |
||||
String c = totalStr.toUpperCase().replaceAll("[A-Z]", ""); |
||||
xlsxReadContext.readSheetHolder().setApproximateTotalRowNumber(Integer.parseInt(c)); |
||||
} |
||||
|
||||
} |
@ -1,186 +0,0 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import static com.alibaba.excel.constant.ExcelXmlConstants.CELL_DATA_FORMAT_TAG; |
||||
import static com.alibaba.excel.constant.ExcelXmlConstants.CELL_FORMULA_TAG; |
||||
import static com.alibaba.excel.constant.ExcelXmlConstants.CELL_INLINE_STRING_VALUE_TAG; |
||||
import static com.alibaba.excel.constant.ExcelXmlConstants.CELL_TAG; |
||||
import static com.alibaba.excel.constant.ExcelXmlConstants.CELL_VALUE_TAG; |
||||
import static com.alibaba.excel.constant.ExcelXmlConstants.CELL_VALUE_TYPE_TAG; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.Deque; |
||||
import java.util.LinkedHashMap; |
||||
import java.util.LinkedList; |
||||
import java.util.Map; |
||||
|
||||
import org.apache.poi.ss.usermodel.BuiltinFormats; |
||||
import org.apache.poi.xssf.model.StylesTable; |
||||
import org.apache.poi.xssf.usermodel.XSSFCellStyle; |
||||
import org.apache.poi.xssf.usermodel.XSSFRichTextString; |
||||
import org.xml.sax.Attributes; |
||||
|
||||
import com.alibaba.excel.analysis.v07.XlsxCellHandler; |
||||
import com.alibaba.excel.analysis.v07.XlsxRowResultHolder; |
||||
import com.alibaba.excel.constant.ExcelXmlConstants; |
||||
import com.alibaba.excel.context.AnalysisContext; |
||||
import com.alibaba.excel.enums.CellDataTypeEnum; |
||||
import com.alibaba.excel.metadata.CellData; |
||||
import com.alibaba.excel.util.BooleanUtils; |
||||
import com.alibaba.excel.util.PositionUtils; |
||||
|
||||
/** |
||||
* Cell Handler |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public class DefaultCellHandler implements XlsxCellHandler, XlsxRowResultHolder { |
||||
private final AnalysisContext analysisContext; |
||||
private Deque<String> currentTagDeque = new LinkedList<String>(); |
||||
private int curCol = -1; |
||||
private Map<Integer, CellData> curRowContent = new LinkedHashMap<Integer, CellData>(); |
||||
private CellData currentCellData; |
||||
private StringBuilder dataStringBuilder; |
||||
private StringBuilder formulaStringBuilder; |
||||
|
||||
/** |
||||
* Current style information |
||||
*/ |
||||
private StylesTable stylesTable; |
||||
|
||||
public DefaultCellHandler(AnalysisContext analysisContext, StylesTable stylesTable) { |
||||
this.analysisContext = analysisContext; |
||||
this.stylesTable = stylesTable; |
||||
} |
||||
|
||||
@Override |
||||
public void clearResult() { |
||||
curRowContent = new LinkedHashMap<Integer, CellData>(); |
||||
curCol=-1; |
||||
} |
||||
|
||||
@Override |
||||
public boolean support(String name) { |
||||
return CELL_VALUE_TAG.equals(name) || CELL_FORMULA_TAG.equals(name) || CELL_INLINE_STRING_VALUE_TAG.equals(name) |
||||
|| CELL_TAG.equals(name); |
||||
} |
||||
|
||||
@Override |
||||
public void startHandle(String name, Attributes attributes) { |
||||
currentTagDeque.push(name); |
||||
// start a cell
|
||||
if (CELL_TAG.equals(name)) { |
||||
curCol = PositionUtils.getCol(attributes.getValue(ExcelXmlConstants.POSITION),curCol); |
||||
|
||||
|
||||
// t="s" ,it's means String
|
||||
// t="str" ,it's means String,but does not need to be read in the 'sharedStrings.xml'
|
||||
// t="inlineStr" ,it's means String
|
||||
// t="b" ,it's means Boolean
|
||||
// t="e" ,it's means Error
|
||||
// t="n" ,it's means Number
|
||||
// t is null ,it's means Empty or Number
|
||||
CellDataTypeEnum type = CellDataTypeEnum.buildFromCellType(attributes.getValue(CELL_VALUE_TYPE_TAG)); |
||||
currentCellData = new CellData(type); |
||||
dataStringBuilder = new StringBuilder(); |
||||
|
||||
// Put in data transformation information
|
||||
String dateFormatIndex = attributes.getValue(CELL_DATA_FORMAT_TAG); |
||||
if (dateFormatIndex != null) { |
||||
int dateFormatIndexInteger = Integer.parseInt(dateFormatIndex); |
||||
XSSFCellStyle xssfCellStyle = stylesTable.getStyleAt(dateFormatIndexInteger); |
||||
int dataFormat = xssfCellStyle.getDataFormat(); |
||||
String dataFormatString = xssfCellStyle.getDataFormatString(); |
||||
currentCellData.setDataFormat(dataFormat); |
||||
if (dataFormatString == null) { |
||||
currentCellData.setDataFormatString(BuiltinFormats.getBuiltinFormat(dataFormat)); |
||||
} else { |
||||
currentCellData.setDataFormatString(dataFormatString); |
||||
} |
||||
} |
||||
} |
||||
// cell is formula
|
||||
if (CELL_FORMULA_TAG.equals(name)) { |
||||
currentCellData.setFormula(Boolean.TRUE); |
||||
formulaStringBuilder = new StringBuilder(); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void endHandle(String name) { |
||||
currentTagDeque.pop(); |
||||
// cell is formula
|
||||
if (CELL_FORMULA_TAG.equals(name)) { |
||||
currentCellData.setFormulaValue(formulaStringBuilder.toString()); |
||||
return; |
||||
} |
||||
if (CELL_VALUE_TAG.equals(name) || CELL_INLINE_STRING_VALUE_TAG.equals(name)) { |
||||
CellDataTypeEnum oldType = currentCellData.getType(); |
||||
switch (oldType) { |
||||
case DIRECT_STRING: |
||||
case STRING: |
||||
case ERROR: |
||||
currentCellData.setStringValue(dataStringBuilder.toString()); |
||||
break; |
||||
case BOOLEAN: |
||||
currentCellData.setBooleanValue(BooleanUtils.valueOf(dataStringBuilder.toString())); |
||||
break; |
||||
case NUMBER: |
||||
case EMPTY: |
||||
currentCellData.setType(CellDataTypeEnum.NUMBER); |
||||
currentCellData.setNumberValue(new BigDecimal(dataStringBuilder.toString())); |
||||
break; |
||||
default: |
||||
throw new IllegalStateException("Cannot set values now"); |
||||
} |
||||
|
||||
if (CELL_VALUE_TAG.equals(name)) { |
||||
// Have to go "sharedStrings.xml" and get it
|
||||
if (currentCellData.getType() == CellDataTypeEnum.STRING) { |
||||
String stringValue = analysisContext.readWorkbookHolder().getReadCache() |
||||
.get(Integer.valueOf(currentCellData.getStringValue())); |
||||
if (stringValue != null |
||||
&& analysisContext.currentReadHolder().globalConfiguration().getAutoTrim()) { |
||||
stringValue = stringValue.trim(); |
||||
} |
||||
currentCellData.setStringValue(stringValue); |
||||
} else if (currentCellData.getType() == CellDataTypeEnum.DIRECT_STRING) { |
||||
currentCellData.setType(CellDataTypeEnum.STRING); |
||||
} |
||||
} |
||||
// This is a special form of string
|
||||
if (CELL_INLINE_STRING_VALUE_TAG.equals(name)) { |
||||
XSSFRichTextString richTextString = new XSSFRichTextString(currentCellData.getStringValue()); |
||||
String stringValue = richTextString.toString(); |
||||
if (stringValue != null && analysisContext.currentReadHolder().globalConfiguration().getAutoTrim()) { |
||||
stringValue = stringValue.trim(); |
||||
} |
||||
currentCellData.setStringValue(stringValue); |
||||
} |
||||
|
||||
currentCellData.checkEmpty(); |
||||
curRowContent.put(curCol, currentCellData); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void appendCurrentCellValue(char[] ch, int start, int length) { |
||||
String currentTag = currentTagDeque.peek(); |
||||
if (currentTag == null) { |
||||
return; |
||||
} |
||||
if (CELL_FORMULA_TAG.equals(currentTag)) { |
||||
formulaStringBuilder.append(ch, start, length); |
||||
return; |
||||
} |
||||
if (!CELL_VALUE_TAG.equals(currentTag) && !CELL_INLINE_STRING_VALUE_TAG.equals(currentTag)) { |
||||
return; |
||||
} |
||||
dataStringBuilder.append(ch, start, length); |
||||
} |
||||
|
||||
@Override |
||||
public Map<Integer, CellData> getCurRowContent() { |
||||
return curRowContent; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,35 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
|
||||
import com.alibaba.excel.constant.ExcelXmlConstants; |
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
import com.alibaba.excel.enums.CellExtraTypeEnum; |
||||
import com.alibaba.excel.metadata.CellExtra; |
||||
import com.alibaba.excel.util.StringUtils; |
||||
|
||||
/** |
||||
* Cell Handler |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class HyperlinkTagHandler extends AbstractXlsxTagHandler { |
||||
|
||||
@Override |
||||
public boolean support(XlsxReadContext xlsxReadContext) { |
||||
return xlsxReadContext.readWorkbookHolder().getExtraReadSet().contains(CellExtraTypeEnum.HYPERLINK); |
||||
} |
||||
|
||||
@Override |
||||
public void startElement(XlsxReadContext xlsxReadContext, String name, Attributes attributes) { |
||||
String ref = attributes.getValue(ExcelXmlConstants.ATTRIBUTE_REF); |
||||
String location = attributes.getValue(ExcelXmlConstants.ATTRIBUTE_LOCATION); |
||||
if (StringUtils.isEmpty(ref)) { |
||||
return; |
||||
} |
||||
CellExtra cellExtra = new CellExtra(CellExtraTypeEnum.HYPERLINK, location, ref); |
||||
xlsxReadContext.readSheetHolder().setCellExtra(cellExtra); |
||||
xlsxReadContext.analysisEventProcessor().extra(xlsxReadContext); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,34 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
|
||||
import com.alibaba.excel.constant.ExcelXmlConstants; |
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
import com.alibaba.excel.enums.CellExtraTypeEnum; |
||||
import com.alibaba.excel.metadata.CellExtra; |
||||
import com.alibaba.excel.util.StringUtils; |
||||
|
||||
/** |
||||
* Cell Handler |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class MergeCellTagHandler extends AbstractXlsxTagHandler { |
||||
|
||||
@Override |
||||
public boolean support(XlsxReadContext xlsxReadContext) { |
||||
return xlsxReadContext.readWorkbookHolder().getExtraReadSet().contains(CellExtraTypeEnum.MERGE); |
||||
} |
||||
|
||||
@Override |
||||
public void startElement(XlsxReadContext xlsxReadContext, String name, Attributes attributes) { |
||||
String ref = attributes.getValue(ExcelXmlConstants.ATTRIBUTE_REF); |
||||
if (StringUtils.isEmpty(ref)) { |
||||
return; |
||||
} |
||||
CellExtra cellExtra = new CellExtra(CellExtraTypeEnum.MERGE, null, ref); |
||||
xlsxReadContext.readSheetHolder().setCellExtra(cellExtra); |
||||
xlsxReadContext.analysisEventProcessor().extra(xlsxReadContext); |
||||
} |
||||
|
||||
} |
@ -1,49 +0,0 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import static com.alibaba.excel.constant.ExcelXmlConstants.ROW_TAG; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
|
||||
import com.alibaba.excel.analysis.v07.XlsxCellHandler; |
||||
import com.alibaba.excel.analysis.v07.XlsxRowResultHolder; |
||||
import com.alibaba.excel.constant.ExcelXmlConstants; |
||||
import com.alibaba.excel.context.AnalysisContext; |
||||
import com.alibaba.excel.read.listener.event.EachRowAnalysisFinishEvent; |
||||
import com.alibaba.excel.read.metadata.holder.ReadRowHolder; |
||||
import com.alibaba.excel.util.PositionUtils; |
||||
|
||||
/** |
||||
* Cell Handler |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public class ProcessResultCellHandler implements XlsxCellHandler { |
||||
private AnalysisContext analysisContext; |
||||
private XlsxRowResultHolder rowResultHandler; |
||||
private int currentRow = -1; |
||||
|
||||
public ProcessResultCellHandler(AnalysisContext analysisContext, XlsxRowResultHolder rowResultHandler) { |
||||
this.analysisContext = analysisContext; |
||||
this.rowResultHandler = rowResultHandler; |
||||
} |
||||
|
||||
@Override |
||||
public boolean support(String name) { |
||||
return ROW_TAG.equals(name); |
||||
} |
||||
|
||||
@Override |
||||
public void startHandle(String name, Attributes attributes) { |
||||
currentRow = PositionUtils.getRowByRowTagt(attributes.getValue(ExcelXmlConstants.POSITION),currentRow); |
||||
analysisContext.readRowHolder( |
||||
new ReadRowHolder(currentRow, analysisContext.readSheetHolder().getGlobalConfiguration())); |
||||
} |
||||
|
||||
@Override |
||||
public void endHandle(String name) { |
||||
analysisContext.readSheetHolder() |
||||
.notifyEndOneRow(new EachRowAnalysisFinishEvent(rowResultHandler.getCurRowContent()), analysisContext); |
||||
rowResultHandler.clearResult(); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,51 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import java.util.LinkedHashMap; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
|
||||
import com.alibaba.excel.constant.ExcelXmlConstants; |
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
import com.alibaba.excel.enums.RowTypeEnum; |
||||
import com.alibaba.excel.metadata.Cell; |
||||
import com.alibaba.excel.read.metadata.holder.ReadRowHolder; |
||||
import com.alibaba.excel.read.metadata.holder.xlsx.XlsxReadSheetHolder; |
||||
import com.alibaba.excel.util.PositionUtils; |
||||
|
||||
/** |
||||
* Cell Handler |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public class RowTagHandler extends AbstractXlsxTagHandler { |
||||
|
||||
@Override |
||||
public void startElement(XlsxReadContext xlsxReadContext, String name, Attributes attributes) { |
||||
XlsxReadSheetHolder xlsxReadSheetHolder = xlsxReadContext.xlsxReadSheetHolder(); |
||||
int rowIndex = PositionUtils.getRowByRowTagt(attributes.getValue(ExcelXmlConstants.ATTRIBUTE_R), |
||||
xlsxReadSheetHolder.getRowIndex()); |
||||
Integer lastRowIndex = xlsxReadContext.readSheetHolder().getRowIndex(); |
||||
if (lastRowIndex != null) { |
||||
while (lastRowIndex + 1 < rowIndex) { |
||||
xlsxReadContext.readRowHolder(new ReadRowHolder(lastRowIndex + 1, RowTypeEnum.EMPTY, |
||||
xlsxReadSheetHolder.getGlobalConfiguration(), new LinkedHashMap<Integer, Cell>())); |
||||
xlsxReadContext.analysisEventProcessor().endRow(xlsxReadContext); |
||||
xlsxReadSheetHolder.setColumnIndex(null); |
||||
xlsxReadSheetHolder.setCellMap(new LinkedHashMap<Integer, Cell>()); |
||||
lastRowIndex++; |
||||
} |
||||
} |
||||
xlsxReadSheetHolder.setRowIndex(rowIndex); |
||||
} |
||||
|
||||
@Override |
||||
public void endElement(XlsxReadContext xlsxReadContext, String name) { |
||||
XlsxReadSheetHolder xlsxReadSheetHolder = xlsxReadContext.xlsxReadSheetHolder(); |
||||
xlsxReadContext.readRowHolder(new ReadRowHolder(xlsxReadSheetHolder.getRowIndex(), RowTypeEnum.DATA, |
||||
xlsxReadSheetHolder.getGlobalConfiguration(), xlsxReadSheetHolder.getCellMap())); |
||||
xlsxReadContext.analysisEventProcessor().endRow(xlsxReadContext); |
||||
xlsxReadSheetHolder.setColumnIndex(null); |
||||
xlsxReadSheetHolder.setCellMap(new LinkedHashMap<Integer, Cell>()); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,54 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
|
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
|
||||
/** |
||||
* Tag handler |
||||
* |
||||
* @author Dan Zheng |
||||
*/ |
||||
public interface XlsxTagHandler { |
||||
|
||||
/** |
||||
* Whether to support |
||||
* |
||||
* @param xlsxReadContext |
||||
* @return |
||||
*/ |
||||
boolean support(XlsxReadContext xlsxReadContext); |
||||
|
||||
/** |
||||
* Start handle |
||||
* |
||||
* @param xlsxReadContext |
||||
* xlsxReadContext |
||||
* @param name |
||||
* Tag name |
||||
* @param attributes |
||||
* Tag attributes |
||||
*/ |
||||
void startElement(XlsxReadContext xlsxReadContext, String name, Attributes attributes); |
||||
|
||||
/** |
||||
* End handle |
||||
* |
||||
* @param xlsxReadContext |
||||
* xlsxReadContext |
||||
* @param name |
||||
* Tag name |
||||
*/ |
||||
void endElement(XlsxReadContext xlsxReadContext, String name); |
||||
|
||||
/** |
||||
* Read data |
||||
* |
||||
* @param xlsxReadContext |
||||
* @param ch |
||||
* @param start |
||||
* @param length |
||||
*/ |
||||
void characters(XlsxReadContext xlsxReadContext, char[] ch, int start, int length); |
||||
|
||||
} |
@ -1,4 +1,4 @@
|
||||
package com.alibaba.excel.analysis.v07; |
||||
package com.alibaba.excel.analysis.v07.handlers.sax; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
import org.xml.sax.helpers.DefaultHandler; |
@ -0,0 +1,93 @@
|
||||
package com.alibaba.excel.analysis.v07.handlers.sax; |
||||
|
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
|
||||
import org.xml.sax.Attributes; |
||||
import org.xml.sax.SAXException; |
||||
import org.xml.sax.helpers.DefaultHandler; |
||||
|
||||
import com.alibaba.excel.analysis.v07.handlers.CellFormulaTagHandler; |
||||
import com.alibaba.excel.analysis.v07.handlers.CellInlineStringValueTagHandler; |
||||
import com.alibaba.excel.analysis.v07.handlers.CellTagHandler; |
||||
import com.alibaba.excel.analysis.v07.handlers.CellValueTagHandler; |
||||
import com.alibaba.excel.analysis.v07.handlers.CountTagHandler; |
||||
import com.alibaba.excel.analysis.v07.handlers.HyperlinkTagHandler; |
||||
import com.alibaba.excel.analysis.v07.handlers.MergeCellTagHandler; |
||||
import com.alibaba.excel.analysis.v07.handlers.RowTagHandler; |
||||
import com.alibaba.excel.analysis.v07.handlers.XlsxTagHandler; |
||||
import com.alibaba.excel.constant.ExcelXmlConstants; |
||||
import com.alibaba.excel.context.xlsx.XlsxReadContext; |
||||
|
||||
/** |
||||
* @author jipengfei |
||||
*/ |
||||
public class XlsxRowHandler extends DefaultHandler { |
||||
private XlsxReadContext xlsxReadContext; |
||||
private static final Map<String, XlsxTagHandler> XLSX_CELL_HANDLER_MAP = new HashMap<String, XlsxTagHandler>(32); |
||||
|
||||
static { |
||||
CellFormulaTagHandler cellFormulaTagHandler = new CellFormulaTagHandler(); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.CELL_FORMULA_TAG, cellFormulaTagHandler); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.X_CELL_FORMULA_TAG, cellFormulaTagHandler); |
||||
CellInlineStringValueTagHandler cellInlineStringValueTagHandler = new CellInlineStringValueTagHandler(); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.CELL_INLINE_STRING_VALUE_TAG, cellInlineStringValueTagHandler); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.X_CELL_INLINE_STRING_VALUE_TAG, cellInlineStringValueTagHandler); |
||||
CellTagHandler cellTagHandler = new CellTagHandler(); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.CELL_TAG, cellTagHandler); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.X_CELL_TAG, cellTagHandler); |
||||
CellValueTagHandler cellValueTagHandler = new CellValueTagHandler(); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.CELL_VALUE_TAG, cellValueTagHandler); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.X_CELL_VALUE_TAG, cellValueTagHandler); |
||||
CountTagHandler countTagHandler = new CountTagHandler(); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.DIMENSION_TAG, countTagHandler); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.X_DIMENSION_TAG, countTagHandler); |
||||
HyperlinkTagHandler hyperlinkTagHandler = new HyperlinkTagHandler(); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.HYPERLINK_TAG, hyperlinkTagHandler); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.X_HYPERLINK_TAG, hyperlinkTagHandler); |
||||
MergeCellTagHandler mergeCellTagHandler = new MergeCellTagHandler(); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.MERGE_CELL_TAG, mergeCellTagHandler); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.X_MERGE_CELL_TAG, mergeCellTagHandler); |
||||
RowTagHandler rowTagHandler = new RowTagHandler(); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.ROW_TAG, rowTagHandler); |
||||
XLSX_CELL_HANDLER_MAP.put(ExcelXmlConstants.X_ROW_TAG, rowTagHandler); |
||||
} |
||||
|
||||
public XlsxRowHandler(XlsxReadContext xlsxReadContext) { |
||||
this.xlsxReadContext = xlsxReadContext; |
||||
} |
||||
|
||||
@Override |
||||
public void startElement(String uri, String localName, String name, Attributes attributes) throws SAXException { |
||||
XlsxTagHandler handler = XLSX_CELL_HANDLER_MAP.get(name); |
||||
if (handler == null || !handler.support(xlsxReadContext)) { |
||||
return; |
||||
} |
||||
xlsxReadContext.xlsxReadSheetHolder().getTagDeque().push(name); |
||||
handler.startElement(xlsxReadContext, name, attributes); |
||||
} |
||||
|
||||
@Override |
||||
public void characters(char[] ch, int start, int length) throws SAXException { |
||||
String currentTag = xlsxReadContext.xlsxReadSheetHolder().getTagDeque().peek(); |
||||
if (currentTag == null) { |
||||
return; |
||||
} |
||||
XlsxTagHandler handler = XLSX_CELL_HANDLER_MAP.get(currentTag); |
||||
if (handler == null || !handler.support(xlsxReadContext)) { |
||||
return; |
||||
} |
||||
handler.characters(xlsxReadContext, ch, start, length); |
||||
} |
||||
|
||||
@Override |
||||
public void endElement(String uri, String localName, String name) throws SAXException { |
||||
XlsxTagHandler handler = XLSX_CELL_HANDLER_MAP.get(name); |
||||
if (handler == null || !handler.support(xlsxReadContext)) { |
||||
return; |
||||
} |
||||
handler.endElement(xlsxReadContext, name); |
||||
xlsxReadContext.xlsxReadSheetHolder().getTagDeque().pop(); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,89 @@
|
||||
package com.alibaba.excel.annotation.write.style; |
||||
|
||||
import java.lang.annotation.ElementType; |
||||
import java.lang.annotation.Inherited; |
||||
import java.lang.annotation.Retention; |
||||
import java.lang.annotation.RetentionPolicy; |
||||
import java.lang.annotation.Target; |
||||
|
||||
import org.apache.poi.common.usermodel.fonts.FontCharset; |
||||
import org.apache.poi.hssf.usermodel.HSSFPalette; |
||||
import org.apache.poi.ss.usermodel.Font; |
||||
import org.apache.poi.ss.usermodel.IndexedColors; |
||||
|
||||
/** |
||||
* Custom content styles. |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
@Target({ElementType.FIELD, ElementType.TYPE}) |
||||
@Retention(RetentionPolicy.RUNTIME) |
||||
@Inherited |
||||
public @interface ContentFontStyle { |
||||
|
||||
/** |
||||
* The name for the font (i.e. Arial) |
||||
*/ |
||||
String fontName() default ""; |
||||
|
||||
/** |
||||
* Height in the familiar unit of measure - points |
||||
*/ |
||||
short fontHeightInPoints() default -1; |
||||
|
||||
/** |
||||
* Whether to use italics or not |
||||
*/ |
||||
boolean italic() default false; |
||||
|
||||
/** |
||||
* Whether to use a strikeout horizontal line through the text or not |
||||
*/ |
||||
boolean strikeout() default false; |
||||
|
||||
/** |
||||
* The color for the font |
||||
* |
||||
* @see Font#COLOR_NORMAL |
||||
* @see Font#COLOR_RED |
||||
* @see HSSFPalette#getColor(short) |
||||
* @see IndexedColors |
||||
*/ |
||||
short color() default -1; |
||||
|
||||
/** |
||||
* Set normal,super or subscript. |
||||
* |
||||
* @see Font#SS_NONE |
||||
* @see Font#SS_SUPER |
||||
* @see Font#SS_SUB |
||||
*/ |
||||
short typeOffset() default -1; |
||||
|
||||
/** |
||||
* set type of text underlining to use |
||||
* |
||||
* @see Font#U_NONE |
||||
* @see Font#U_SINGLE |
||||
* @see Font#U_DOUBLE |
||||
* @see Font#U_SINGLE_ACCOUNTING |
||||
* @see Font#U_DOUBLE_ACCOUNTING |
||||
*/ |
||||
|
||||
byte underline() default -1; |
||||
|
||||
/** |
||||
* Set character-set to use. |
||||
* |
||||
* @see FontCharset |
||||
* @see Font#ANSI_CHARSET |
||||
* @see Font#DEFAULT_CHARSET |
||||
* @see Font#SYMBOL_CHARSET |
||||
*/ |
||||
int charset() default -1; |
||||
|
||||
/** |
||||
* Bold |
||||
*/ |
||||
boolean bold() default false; |
||||
} |
@ -0,0 +1,31 @@
|
||||
package com.alibaba.excel.annotation.write.style; |
||||
|
||||
import java.lang.annotation.ElementType; |
||||
import java.lang.annotation.Inherited; |
||||
import java.lang.annotation.Retention; |
||||
import java.lang.annotation.RetentionPolicy; |
||||
import java.lang.annotation.Target; |
||||
|
||||
/** |
||||
* The regions of the loop merge |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
@Target({ElementType.FIELD}) |
||||
@Retention(RetentionPolicy.RUNTIME) |
||||
@Inherited |
||||
public @interface ContentLoopMerge { |
||||
/** |
||||
* Each row |
||||
* |
||||
* @return |
||||
*/ |
||||
int eachRow() default -1; |
||||
|
||||
/** |
||||
* Extend column |
||||
* |
||||
* @return |
||||
*/ |
||||
int columnExtend() default 1; |
||||
} |
@ -0,0 +1,159 @@
|
||||
package com.alibaba.excel.annotation.write.style; |
||||
|
||||
import java.lang.annotation.ElementType; |
||||
import java.lang.annotation.Inherited; |
||||
import java.lang.annotation.Retention; |
||||
import java.lang.annotation.RetentionPolicy; |
||||
import java.lang.annotation.Target; |
||||
|
||||
import org.apache.poi.ss.usermodel.BorderStyle; |
||||
import org.apache.poi.ss.usermodel.BuiltinFormats; |
||||
import org.apache.poi.ss.usermodel.FillPatternType; |
||||
import org.apache.poi.ss.usermodel.HorizontalAlignment; |
||||
import org.apache.poi.ss.usermodel.IgnoredErrorType; |
||||
import org.apache.poi.ss.usermodel.IndexedColors; |
||||
import org.apache.poi.ss.usermodel.VerticalAlignment; |
||||
|
||||
/** |
||||
* Custom content styles |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
@Target({ElementType.FIELD, ElementType.TYPE}) |
||||
@Retention(RetentionPolicy.RUNTIME) |
||||
@Inherited |
||||
public @interface ContentStyle { |
||||
/** |
||||
* Set the data format (must be a valid format). Built in formats are defined at {@link BuiltinFormats}. |
||||
*/ |
||||
short dataFormat() default -1; |
||||
|
||||
/** |
||||
* Set the cell's using this style to be hidden |
||||
*/ |
||||
boolean hidden() default false; |
||||
|
||||
/** |
||||
* Set the cell's using this style to be locked |
||||
*/ |
||||
boolean locked() default false; |
||||
|
||||
/** |
||||
* Turn on or off "Quote Prefix" or "123 Prefix" for the style, which is used to tell Excel that the thing which |
||||
* looks like a number or a formula shouldn't be treated as on. Turning this on is somewhat (but not completely, see |
||||
* {@link IgnoredErrorType}) like prefixing the cell value with a ' in Excel |
||||
*/ |
||||
boolean quotePrefix() default false; |
||||
|
||||
/** |
||||
* Set the type of horizontal alignment for the cell |
||||
*/ |
||||
HorizontalAlignment horizontalAlignment() default HorizontalAlignment.GENERAL; |
||||
|
||||
/** |
||||
* Set whether the text should be wrapped. Setting this flag to <code>true</code> make all content visible within a |
||||
* cell by displaying it on multiple lines |
||||
* |
||||
*/ |
||||
boolean wrapped() default false; |
||||
|
||||
/** |
||||
* Set the type of vertical alignment for the cell |
||||
*/ |
||||
VerticalAlignment verticalAlignment() default VerticalAlignment.CENTER; |
||||
|
||||
/** |
||||
* Set the degree of rotation for the text in the cell. |
||||
* |
||||
* Note: HSSF uses values from -90 to 90 degrees, whereas XSSF uses values from 0 to 180 degrees. The |
||||
* implementations of this method will map between these two value-ranges accordingly, however the corresponding |
||||
* getter is returning values in the range mandated by the current type of Excel file-format that this CellStyle is |
||||
* applied to. |
||||
*/ |
||||
short rotation() default -1; |
||||
|
||||
/** |
||||
* Set the number of spaces to indent the text in the cell |
||||
*/ |
||||
short indent() default -1; |
||||
|
||||
/** |
||||
* Set the type of border to use for the left border of the cell |
||||
*/ |
||||
BorderStyle borderLeft() default BorderStyle.NONE; |
||||
|
||||
/** |
||||
* Set the type of border to use for the right border of the cell |
||||
*/ |
||||
BorderStyle borderRight() default BorderStyle.NONE; |
||||
|
||||
/** |
||||
* Set the type of border to use for the top border of the cell |
||||
*/ |
||||
BorderStyle borderTop() default BorderStyle.NONE; |
||||
|
||||
/** |
||||
* Set the type of border to use for the bottom border of the cell |
||||
*/ |
||||
BorderStyle borderBottom() default BorderStyle.NONE; |
||||
|
||||
/** |
||||
* Set the color to use for the left border |
||||
* |
||||
* @see IndexedColors |
||||
*/ |
||||
short leftBorderColor() default -1; |
||||
|
||||
/** |
||||
* Set the color to use for the right border |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
short rightBorderColor() default -1; |
||||
|
||||
/** |
||||
* Set the color to use for the top border |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
short topBorderColor() default -1; |
||||
|
||||
/** |
||||
* Set the color to use for the bottom border |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
short bottomBorderColor() default -1; |
||||
|
||||
/** |
||||
* Setting to one fills the cell with the foreground color... No idea about other values |
||||
* |
||||
* @see FillPatternType#SOLID_FOREGROUND |
||||
*/ |
||||
FillPatternType fillPatternType() default FillPatternType.NO_FILL; |
||||
|
||||
/** |
||||
* Set the background fill color. |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
short fillBackgroundColor() default -1; |
||||
|
||||
/** |
||||
* Set the foreground fill color <i>Note: Ensure Foreground color is set prior to background color.</i> |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
short fillForegroundColor() default -1; |
||||
|
||||
/** |
||||
* Controls if the Cell should be auto-sized to shrink to fit if the text is too long |
||||
*/ |
||||
boolean shrinkToFit() default false; |
||||
|
||||
} |
@ -0,0 +1,89 @@
|
||||
package com.alibaba.excel.annotation.write.style; |
||||
|
||||
import java.lang.annotation.ElementType; |
||||
import java.lang.annotation.Inherited; |
||||
import java.lang.annotation.Retention; |
||||
import java.lang.annotation.RetentionPolicy; |
||||
import java.lang.annotation.Target; |
||||
|
||||
import org.apache.poi.common.usermodel.fonts.FontCharset; |
||||
import org.apache.poi.hssf.usermodel.HSSFPalette; |
||||
import org.apache.poi.ss.usermodel.Font; |
||||
import org.apache.poi.ss.usermodel.IndexedColors; |
||||
|
||||
/** |
||||
* Custom header styles. |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
@Target({ElementType.FIELD, ElementType.TYPE}) |
||||
@Retention(RetentionPolicy.RUNTIME) |
||||
@Inherited |
||||
public @interface HeadFontStyle { |
||||
|
||||
/** |
||||
* The name for the font (i.e. Arial) |
||||
*/ |
||||
String fontName() default "宋体"; |
||||
|
||||
/** |
||||
* Height in the familiar unit of measure - points |
||||
*/ |
||||
short fontHeightInPoints() default 14; |
||||
|
||||
/** |
||||
* Whether to use italics or not |
||||
*/ |
||||
boolean italic() default false; |
||||
|
||||
/** |
||||
* Whether to use a strikeout horizontal line through the text or not |
||||
*/ |
||||
boolean strikeout() default false; |
||||
|
||||
/** |
||||
* The color for the font |
||||
* |
||||
* @see Font#COLOR_NORMAL |
||||
* @see Font#COLOR_RED |
||||
* @see HSSFPalette#getColor(short) |
||||
* @see IndexedColors |
||||
*/ |
||||
short color() default -1; |
||||
|
||||
/** |
||||
* Set normal,super or subscript. |
||||
* |
||||
* @see Font#SS_NONE |
||||
* @see Font#SS_SUPER |
||||
* @see Font#SS_SUB |
||||
*/ |
||||
short typeOffset() default -1; |
||||
|
||||
/** |
||||
* set type of text underlining to use |
||||
* |
||||
* @see Font#U_NONE |
||||
* @see Font#U_SINGLE |
||||
* @see Font#U_DOUBLE |
||||
* @see Font#U_SINGLE_ACCOUNTING |
||||
* @see Font#U_DOUBLE_ACCOUNTING |
||||
*/ |
||||
|
||||
byte underline() default -1; |
||||
|
||||
/** |
||||
* Set character-set to use. |
||||
* |
||||
* @see FontCharset |
||||
* @see Font#ANSI_CHARSET |
||||
* @see Font#DEFAULT_CHARSET |
||||
* @see Font#SYMBOL_CHARSET |
||||
*/ |
||||
int charset() default -1; |
||||
|
||||
/** |
||||
* Bold |
||||
*/ |
||||
boolean bold() default true; |
||||
} |
@ -0,0 +1,159 @@
|
||||
package com.alibaba.excel.annotation.write.style; |
||||
|
||||
import java.lang.annotation.ElementType; |
||||
import java.lang.annotation.Inherited; |
||||
import java.lang.annotation.Retention; |
||||
import java.lang.annotation.RetentionPolicy; |
||||
import java.lang.annotation.Target; |
||||
|
||||
import org.apache.poi.ss.usermodel.BorderStyle; |
||||
import org.apache.poi.ss.usermodel.BuiltinFormats; |
||||
import org.apache.poi.ss.usermodel.FillPatternType; |
||||
import org.apache.poi.ss.usermodel.HorizontalAlignment; |
||||
import org.apache.poi.ss.usermodel.IgnoredErrorType; |
||||
import org.apache.poi.ss.usermodel.IndexedColors; |
||||
import org.apache.poi.ss.usermodel.VerticalAlignment; |
||||
|
||||
/** |
||||
* Custom header styles |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
@Target({ElementType.FIELD, ElementType.TYPE}) |
||||
@Retention(RetentionPolicy.RUNTIME) |
||||
@Inherited |
||||
public @interface HeadStyle { |
||||
/** |
||||
* Set the data format (must be a valid format). Built in formats are defined at {@link BuiltinFormats}. |
||||
*/ |
||||
short dataFormat() default -1; |
||||
|
||||
/** |
||||
* Set the cell's using this style to be hidden |
||||
*/ |
||||
boolean hidden() default false; |
||||
|
||||
/** |
||||
* Set the cell's using this style to be locked |
||||
*/ |
||||
boolean locked() default true; |
||||
|
||||
/** |
||||
* Turn on or off "Quote Prefix" or "123 Prefix" for the style, which is used to tell Excel that the thing which |
||||
* looks like a number or a formula shouldn't be treated as on. Turning this on is somewhat (but not completely, see |
||||
* {@link IgnoredErrorType}) like prefixing the cell value with a ' in Excel |
||||
*/ |
||||
boolean quotePrefix() default false; |
||||
|
||||
/** |
||||
* Set the type of horizontal alignment for the cell |
||||
*/ |
||||
HorizontalAlignment horizontalAlignment() default HorizontalAlignment.CENTER; |
||||
|
||||
/** |
||||
* Set whether the text should be wrapped. Setting this flag to <code>true</code> make all content visible within a |
||||
* cell by displaying it on multiple lines |
||||
* |
||||
*/ |
||||
boolean wrapped() default true; |
||||
|
||||
/** |
||||
* Set the type of vertical alignment for the cell |
||||
*/ |
||||
VerticalAlignment verticalAlignment() default VerticalAlignment.CENTER; |
||||
|
||||
/** |
||||
* Set the degree of rotation for the text in the cell. |
||||
* |
||||
* Note: HSSF uses values from -90 to 90 degrees, whereas XSSF uses values from 0 to 180 degrees. The |
||||
* implementations of this method will map between these two value-ranges accordingly, however the corresponding |
||||
* getter is returning values in the range mandated by the current type of Excel file-format that this CellStyle is |
||||
* applied to. |
||||
*/ |
||||
short rotation() default -1; |
||||
|
||||
/** |
||||
* Set the number of spaces to indent the text in the cell |
||||
*/ |
||||
short indent() default -1; |
||||
|
||||
/** |
||||
* Set the type of border to use for the left border of the cell |
||||
*/ |
||||
BorderStyle borderLeft() default BorderStyle.THIN; |
||||
|
||||
/** |
||||
* Set the type of border to use for the right border of the cell |
||||
*/ |
||||
BorderStyle borderRight() default BorderStyle.THIN; |
||||
|
||||
/** |
||||
* Set the type of border to use for the top border of the cell |
||||
*/ |
||||
BorderStyle borderTop() default BorderStyle.THIN; |
||||
|
||||
/** |
||||
* Set the type of border to use for the bottom border of the cell |
||||
*/ |
||||
BorderStyle borderBottom() default BorderStyle.THIN; |
||||
|
||||
/** |
||||
* Set the color to use for the left border |
||||
* |
||||
* @see IndexedColors |
||||
*/ |
||||
short leftBorderColor() default -1; |
||||
|
||||
/** |
||||
* Set the color to use for the right border |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
short rightBorderColor() default -1; |
||||
|
||||
/** |
||||
* Set the color to use for the top border |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
short topBorderColor() default -1; |
||||
|
||||
/** |
||||
* Set the color to use for the bottom border |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
short bottomBorderColor() default -1; |
||||
|
||||
/** |
||||
* Setting to one fills the cell with the foreground color... No idea about other values |
||||
* |
||||
* @see FillPatternType#SOLID_FOREGROUND |
||||
*/ |
||||
FillPatternType fillPatternType() default FillPatternType.SOLID_FOREGROUND; |
||||
|
||||
/** |
||||
* Set the background fill color. |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
short fillBackgroundColor() default -1; |
||||
|
||||
/** |
||||
* Set the foreground fill color <i>Note: Ensure Foreground color is set prior to background color.</i> |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
short fillForegroundColor() default -1; |
||||
|
||||
/** |
||||
* Controls if the Cell should be auto-sized to shrink to fit if the text is too long |
||||
*/ |
||||
boolean shrinkToFit() default false; |
||||
|
||||
} |
@ -0,0 +1,45 @@
|
||||
package com.alibaba.excel.annotation.write.style; |
||||
|
||||
import java.lang.annotation.ElementType; |
||||
import java.lang.annotation.Inherited; |
||||
import java.lang.annotation.Retention; |
||||
import java.lang.annotation.RetentionPolicy; |
||||
import java.lang.annotation.Target; |
||||
|
||||
/** |
||||
* Merge the cells once |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
@Target({ElementType.TYPE}) |
||||
@Retention(RetentionPolicy.RUNTIME) |
||||
@Inherited |
||||
public @interface OnceAbsoluteMerge { |
||||
/** |
||||
* First row |
||||
* |
||||
* @return |
||||
*/ |
||||
int firstRowIndex() default -1; |
||||
|
||||
/** |
||||
* Last row |
||||
* |
||||
* @return |
||||
*/ |
||||
int lastRowIndex() default -1; |
||||
|
||||
/** |
||||
* First column |
||||
* |
||||
* @return |
||||
*/ |
||||
int firstColumnIndex() default -1; |
||||
|
||||
/** |
||||
* Last row |
||||
* |
||||
* @return |
||||
*/ |
||||
int lastColumnIndex() default -1; |
||||
} |
@ -0,0 +1,37 @@
|
||||
package com.alibaba.excel.cache; |
||||
|
||||
import org.apache.poi.hssf.record.SSTRecord; |
||||
|
||||
import com.alibaba.excel.context.AnalysisContext; |
||||
|
||||
/** |
||||
* |
||||
* Use SSTRecord. |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class XlsCache implements ReadCache { |
||||
private SSTRecord sstRecord; |
||||
|
||||
public XlsCache(SSTRecord sstRecord) { |
||||
this.sstRecord = sstRecord; |
||||
} |
||||
|
||||
@Override |
||||
public void init(AnalysisContext analysisContext) {} |
||||
|
||||
@Override |
||||
public void put(String value) {} |
||||
|
||||
@Override |
||||
public String get(Integer key) { |
||||
return sstRecord.getString(key).toString(); |
||||
} |
||||
|
||||
@Override |
||||
public void putFinished() {} |
||||
|
||||
@Override |
||||
public void destroy() {} |
||||
|
||||
} |
@ -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,30 @@
|
||||
package com.alibaba.excel.context.xls; |
||||
|
||||
import com.alibaba.excel.context.AnalysisContextImpl; |
||||
import com.alibaba.excel.read.metadata.ReadWorkbook; |
||||
import com.alibaba.excel.read.metadata.holder.xls.XlsReadSheetHolder; |
||||
import com.alibaba.excel.read.metadata.holder.xls.XlsReadWorkbookHolder; |
||||
import com.alibaba.excel.support.ExcelTypeEnum; |
||||
|
||||
/** |
||||
* |
||||
* A context is the main anchorage point of a ls xls reader. |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class DefaultXlsReadContext extends AnalysisContextImpl implements XlsReadContext { |
||||
|
||||
public DefaultXlsReadContext(ReadWorkbook readWorkbook, ExcelTypeEnum actualExcelType) { |
||||
super(readWorkbook, actualExcelType); |
||||
} |
||||
|
||||
@Override |
||||
public XlsReadWorkbookHolder xlsReadWorkbookHolder() { |
||||
return (XlsReadWorkbookHolder)readWorkbookHolder(); |
||||
} |
||||
|
||||
@Override |
||||
public XlsReadSheetHolder xlsReadSheetHolder() { |
||||
return (XlsReadSheetHolder)readSheetHolder(); |
||||
} |
||||
} |
@ -0,0 +1,26 @@
|
||||
package com.alibaba.excel.context.xls; |
||||
|
||||
import com.alibaba.excel.context.AnalysisContext; |
||||
import com.alibaba.excel.read.metadata.holder.xls.XlsReadSheetHolder; |
||||
import com.alibaba.excel.read.metadata.holder.xls.XlsReadWorkbookHolder; |
||||
|
||||
/** |
||||
* A context is the main anchorage point of a ls xls reader. |
||||
* |
||||
* @author Jiaju Zhuang |
||||
**/ |
||||
public interface XlsReadContext extends AnalysisContext { |
||||
/** |
||||
* All information about the workbook you are currently working on. |
||||
* |
||||
* @return Current workbook holder |
||||
*/ |
||||
XlsReadWorkbookHolder xlsReadWorkbookHolder(); |
||||
|
||||
/** |
||||
* All information about the sheet you are currently working on. |
||||
* |
||||
* @return Current sheet holder |
||||
*/ |
||||
XlsReadSheetHolder xlsReadSheetHolder(); |
||||
} |
@ -0,0 +1,30 @@
|
||||
package com.alibaba.excel.context.xlsx; |
||||
|
||||
import com.alibaba.excel.context.AnalysisContextImpl; |
||||
import com.alibaba.excel.read.metadata.ReadWorkbook; |
||||
import com.alibaba.excel.read.metadata.holder.xlsx.XlsxReadSheetHolder; |
||||
import com.alibaba.excel.read.metadata.holder.xlsx.XlsxReadWorkbookHolder; |
||||
import com.alibaba.excel.support.ExcelTypeEnum; |
||||
|
||||
/** |
||||
* |
||||
* A context is the main anchorage point of a ls xls reader. |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class DefaultXlsxReadContext extends AnalysisContextImpl implements XlsxReadContext { |
||||
|
||||
public DefaultXlsxReadContext(ReadWorkbook readWorkbook, ExcelTypeEnum actualExcelType) { |
||||
super(readWorkbook, actualExcelType); |
||||
} |
||||
|
||||
@Override |
||||
public XlsxReadWorkbookHolder xlsxReadWorkbookHolder() { |
||||
return (XlsxReadWorkbookHolder)readWorkbookHolder(); |
||||
} |
||||
|
||||
@Override |
||||
public XlsxReadSheetHolder xlsxReadSheetHolder() { |
||||
return (XlsxReadSheetHolder)readSheetHolder(); |
||||
} |
||||
} |
@ -0,0 +1,26 @@
|
||||
package com.alibaba.excel.context.xlsx; |
||||
|
||||
import com.alibaba.excel.context.AnalysisContext; |
||||
import com.alibaba.excel.read.metadata.holder.xlsx.XlsxReadSheetHolder; |
||||
import com.alibaba.excel.read.metadata.holder.xlsx.XlsxReadWorkbookHolder; |
||||
|
||||
/** |
||||
* A context is the main anchorage point of a ls xlsx reader. |
||||
* |
||||
* @author Jiaju Zhuang |
||||
**/ |
||||
public interface XlsxReadContext extends AnalysisContext { |
||||
/** |
||||
* All information about the workbook you are currently working on. |
||||
* |
||||
* @return Current workbook holder |
||||
*/ |
||||
XlsxReadWorkbookHolder xlsxReadWorkbookHolder(); |
||||
|
||||
/** |
||||
* All information about the sheet you are currently working on. |
||||
* |
||||
* @return Current sheet holder |
||||
*/ |
||||
XlsxReadSheetHolder xlsxReadSheetHolder(); |
||||
} |
@ -0,0 +1,21 @@
|
||||
package com.alibaba.excel.enums; |
||||
|
||||
/** |
||||
* Extra data type |
||||
* |
||||
* @author Jiaju Zhuang |
||||
**/ |
||||
public enum CellExtraTypeEnum { |
||||
/** |
||||
* Comment |
||||
*/ |
||||
COMMENT, |
||||
/** |
||||
* Hyperlink |
||||
*/ |
||||
HYPERLINK, |
||||
/** |
||||
* Merge |
||||
*/ |
||||
MERGE,; |
||||
} |
@ -0,0 +1,17 @@
|
||||
package com.alibaba.excel.enums; |
||||
|
||||
/** |
||||
* The types of row |
||||
* |
||||
* @author Jiaju Zhuang |
||||
**/ |
||||
public enum RowTypeEnum { |
||||
/** |
||||
* data |
||||
*/ |
||||
DATA, |
||||
/** |
||||
* empty |
||||
*/ |
||||
EMPTY,; |
||||
} |
@ -0,0 +1,33 @@
|
||||
package com.alibaba.excel.metadata; |
||||
|
||||
/** |
||||
* cell |
||||
* |
||||
* @author Jiaju Zhuang |
||||
**/ |
||||
public class AbstractCell implements Cell { |
||||
/** |
||||
* Row index |
||||
*/ |
||||
private Integer rowIndex; |
||||
/** |
||||
* Column index |
||||
*/ |
||||
private Integer columnIndex; |
||||
|
||||
public Integer getRowIndex() { |
||||
return rowIndex; |
||||
} |
||||
|
||||
public void setRowIndex(Integer rowIndex) { |
||||
this.rowIndex = rowIndex; |
||||
} |
||||
|
||||
public Integer getColumnIndex() { |
||||
return columnIndex; |
||||
} |
||||
|
||||
public void setColumnIndex(Integer columnIndex) { |
||||
this.columnIndex = columnIndex; |
||||
} |
||||
} |
@ -0,0 +1,98 @@
|
||||
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; |
||||
} |
||||
|
||||
/** |
||||
* Get parameter |
||||
* |
||||
* @return |
||||
*/ |
||||
protected abstract C parameter(); |
||||
} |
@ -0,0 +1,22 @@
|
||||
package com.alibaba.excel.metadata; |
||||
|
||||
/** |
||||
* Cell |
||||
* |
||||
* @author Jiaju Zhuang |
||||
**/ |
||||
public interface Cell { |
||||
/** |
||||
* Row index |
||||
* |
||||
* @return |
||||
*/ |
||||
Integer getRowIndex(); |
||||
|
||||
/** |
||||
* Column index |
||||
* |
||||
* @return |
||||
*/ |
||||
Integer getColumnIndex(); |
||||
} |
@ -0,0 +1,121 @@
|
||||
package com.alibaba.excel.metadata; |
||||
|
||||
import org.apache.poi.ss.util.CellReference; |
||||
|
||||
import com.alibaba.excel.constant.ExcelXmlConstants; |
||||
import com.alibaba.excel.enums.CellExtraTypeEnum; |
||||
|
||||
/** |
||||
* Cell extra information. |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class CellExtra extends AbstractCell { |
||||
/** |
||||
* Cell extra type |
||||
*/ |
||||
private CellExtraTypeEnum type; |
||||
/** |
||||
* Cell extra data |
||||
*/ |
||||
private String text; |
||||
/** |
||||
* First row index,if this object is an interval |
||||
*/ |
||||
private Integer firstRowIndex; |
||||
/** |
||||
* Last row index,if this object is an interval |
||||
*/ |
||||
private Integer lastRowIndex; |
||||
/** |
||||
* First column index,if this object is an interval |
||||
*/ |
||||
private Integer firstColumnIndex; |
||||
/** |
||||
* Last column index,if this object is an interval |
||||
*/ |
||||
private Integer lastColumnIndex; |
||||
|
||||
public CellExtra(CellExtraTypeEnum type, String text, String range) { |
||||
super(); |
||||
this.type = type; |
||||
this.text = text; |
||||
String[] ranges = range.split(ExcelXmlConstants.CELL_RANGE_SPLIT); |
||||
CellReference first = new CellReference(ranges[0]); |
||||
CellReference last = first; |
||||
this.firstRowIndex = first.getRow(); |
||||
this.firstColumnIndex = (int)first.getCol(); |
||||
setRowIndex(this.firstRowIndex); |
||||
setColumnIndex(this.firstColumnIndex); |
||||
if (ranges.length > 1) { |
||||
last = new CellReference(ranges[1]); |
||||
} |
||||
this.lastRowIndex = last.getRow(); |
||||
this.lastColumnIndex = (int)last.getCol(); |
||||
} |
||||
|
||||
public CellExtra(CellExtraTypeEnum type, String text, Integer rowIndex, Integer columnIndex) { |
||||
this(type, text, rowIndex, rowIndex, columnIndex, columnIndex); |
||||
} |
||||
|
||||
public CellExtra(CellExtraTypeEnum type, String text, Integer firstRowIndex, Integer lastRowIndex, |
||||
Integer firstColumnIndex, Integer lastColumnIndex) { |
||||
super(); |
||||
setRowIndex(firstRowIndex); |
||||
setColumnIndex(firstColumnIndex); |
||||
this.type = type; |
||||
this.text = text; |
||||
this.firstRowIndex = firstRowIndex; |
||||
this.firstColumnIndex = firstColumnIndex; |
||||
this.lastRowIndex = lastRowIndex; |
||||
this.lastColumnIndex = lastColumnIndex; |
||||
} |
||||
|
||||
public CellExtraTypeEnum getType() { |
||||
return type; |
||||
} |
||||
|
||||
public void setType(CellExtraTypeEnum type) { |
||||
this.type = type; |
||||
} |
||||
|
||||
public String getText() { |
||||
return text; |
||||
} |
||||
|
||||
public void setText(String text) { |
||||
this.text = text; |
||||
} |
||||
|
||||
public Integer getFirstRowIndex() { |
||||
return firstRowIndex; |
||||
} |
||||
|
||||
public void setFirstRowIndex(Integer firstRowIndex) { |
||||
this.firstRowIndex = firstRowIndex; |
||||
} |
||||
|
||||
public Integer getFirstColumnIndex() { |
||||
return firstColumnIndex; |
||||
} |
||||
|
||||
public void setFirstColumnIndex(Integer firstColumnIndex) { |
||||
this.firstColumnIndex = firstColumnIndex; |
||||
} |
||||
|
||||
public Integer getLastRowIndex() { |
||||
return lastRowIndex; |
||||
} |
||||
|
||||
public void setLastRowIndex(Integer lastRowIndex) { |
||||
this.lastRowIndex = lastRowIndex; |
||||
} |
||||
|
||||
public Integer getLastColumnIndex() { |
||||
return lastColumnIndex; |
||||
} |
||||
|
||||
public void setLastColumnIndex(Integer lastColumnIndex) { |
||||
this.lastColumnIndex = lastColumnIndex; |
||||
} |
||||
} |
@ -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,180 @@
|
||||
package com.alibaba.excel.metadata.property; |
||||
|
||||
import org.apache.poi.common.usermodel.fonts.FontCharset; |
||||
import org.apache.poi.hssf.usermodel.HSSFPalette; |
||||
import org.apache.poi.ss.usermodel.Font; |
||||
import org.apache.poi.ss.usermodel.IndexedColors; |
||||
|
||||
import com.alibaba.excel.annotation.write.style.ContentFontStyle; |
||||
import com.alibaba.excel.annotation.write.style.HeadFontStyle; |
||||
|
||||
/** |
||||
* Configuration from annotations |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class FontProperty { |
||||
/** |
||||
* The name for the font (i.e. Arial) |
||||
*/ |
||||
private String fontName; |
||||
/** |
||||
* Height in the familiar unit of measure - points |
||||
*/ |
||||
private Short fontHeightInPoints; |
||||
/** |
||||
* Whether to use italics or not |
||||
*/ |
||||
private Boolean italic; |
||||
/** |
||||
* Whether to use a strikeout horizontal line through the text or not |
||||
*/ |
||||
private Boolean strikeout; |
||||
/** |
||||
* The color for the font |
||||
* |
||||
* @see Font#COLOR_NORMAL |
||||
* @see Font#COLOR_RED |
||||
* @see HSSFPalette#getColor(short) |
||||
* @see IndexedColors |
||||
*/ |
||||
private Short color; |
||||
/** |
||||
* Set normal,super or subscript. |
||||
* |
||||
* @see Font#SS_NONE |
||||
* @see Font#SS_SUPER |
||||
* @see Font#SS_SUB |
||||
*/ |
||||
private Short typeOffset; |
||||
/** |
||||
* set type of text underlining to use |
||||
* |
||||
* @see Font#U_NONE |
||||
* @see Font#U_SINGLE |
||||
* @see Font#U_DOUBLE |
||||
* @see Font#U_SINGLE_ACCOUNTING |
||||
* @see Font#U_DOUBLE_ACCOUNTING |
||||
*/ |
||||
|
||||
private Byte underline; |
||||
/** |
||||
* Set character-set to use. |
||||
* |
||||
* @see FontCharset |
||||
* @see Font#ANSI_CHARSET |
||||
* @see Font#DEFAULT_CHARSET |
||||
* @see Font#SYMBOL_CHARSET |
||||
*/ |
||||
private Integer charset; |
||||
/** |
||||
* Bold |
||||
*/ |
||||
private Boolean bold; |
||||
|
||||
public static FontProperty build(HeadFontStyle headFontStyle) { |
||||
if (headFontStyle == null) { |
||||
return null; |
||||
} |
||||
FontProperty styleProperty = new FontProperty(); |
||||
styleProperty.setFontName(headFontStyle.fontName()); |
||||
styleProperty.setFontHeightInPoints(headFontStyle.fontHeightInPoints()); |
||||
styleProperty.setItalic(headFontStyle.italic()); |
||||
styleProperty.setStrikeout(headFontStyle.strikeout()); |
||||
styleProperty.setColor(headFontStyle.color()); |
||||
styleProperty.setTypeOffset(headFontStyle.typeOffset()); |
||||
styleProperty.setUnderline(headFontStyle.underline()); |
||||
styleProperty.setCharset(headFontStyle.charset()); |
||||
styleProperty.setBold(headFontStyle.bold()); |
||||
return styleProperty; |
||||
} |
||||
|
||||
public static FontProperty build(ContentFontStyle contentFontStyle) { |
||||
if (contentFontStyle == null) { |
||||
return null; |
||||
} |
||||
FontProperty styleProperty = new FontProperty(); |
||||
styleProperty.setFontName(contentFontStyle.fontName()); |
||||
styleProperty.setFontHeightInPoints(contentFontStyle.fontHeightInPoints()); |
||||
styleProperty.setItalic(contentFontStyle.italic()); |
||||
styleProperty.setStrikeout(contentFontStyle.strikeout()); |
||||
styleProperty.setColor(contentFontStyle.color()); |
||||
styleProperty.setTypeOffset(contentFontStyle.typeOffset()); |
||||
styleProperty.setUnderline(contentFontStyle.underline()); |
||||
styleProperty.setCharset(contentFontStyle.charset()); |
||||
styleProperty.setBold(contentFontStyle.bold()); |
||||
return styleProperty; |
||||
} |
||||
|
||||
public String getFontName() { |
||||
return fontName; |
||||
} |
||||
|
||||
public void setFontName(String fontName) { |
||||
this.fontName = fontName; |
||||
} |
||||
|
||||
public Short getFontHeightInPoints() { |
||||
return fontHeightInPoints; |
||||
} |
||||
|
||||
public void setFontHeightInPoints(Short fontHeightInPoints) { |
||||
this.fontHeightInPoints = fontHeightInPoints; |
||||
} |
||||
|
||||
public Boolean getItalic() { |
||||
return italic; |
||||
} |
||||
|
||||
public void setItalic(Boolean italic) { |
||||
this.italic = italic; |
||||
} |
||||
|
||||
public Boolean getStrikeout() { |
||||
return strikeout; |
||||
} |
||||
|
||||
public void setStrikeout(Boolean strikeout) { |
||||
this.strikeout = strikeout; |
||||
} |
||||
|
||||
public Short getColor() { |
||||
return color; |
||||
} |
||||
|
||||
public void setColor(Short color) { |
||||
this.color = color; |
||||
} |
||||
|
||||
public Short getTypeOffset() { |
||||
return typeOffset; |
||||
} |
||||
|
||||
public void setTypeOffset(Short typeOffset) { |
||||
this.typeOffset = typeOffset; |
||||
} |
||||
|
||||
public Byte getUnderline() { |
||||
return underline; |
||||
} |
||||
|
||||
public void setUnderline(Byte underline) { |
||||
this.underline = underline; |
||||
} |
||||
|
||||
public Integer getCharset() { |
||||
return charset; |
||||
} |
||||
|
||||
public void setCharset(Integer charset) { |
||||
this.charset = charset; |
||||
} |
||||
|
||||
public Boolean getBold() { |
||||
return bold; |
||||
} |
||||
|
||||
public void setBold(Boolean bold) { |
||||
this.bold = bold; |
||||
} |
||||
} |
@ -0,0 +1,47 @@
|
||||
package com.alibaba.excel.metadata.property; |
||||
|
||||
import com.alibaba.excel.annotation.write.style.ContentLoopMerge; |
||||
|
||||
/** |
||||
* Configuration from annotations |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class LoopMergeProperty { |
||||
/** |
||||
* Each row |
||||
*/ |
||||
private int eachRow; |
||||
/** |
||||
* Extend column |
||||
*/ |
||||
private int columnExtend; |
||||
|
||||
public LoopMergeProperty(int eachRow, int columnExtend) { |
||||
this.eachRow = eachRow; |
||||
this.columnExtend = columnExtend; |
||||
} |
||||
|
||||
public static LoopMergeProperty build(ContentLoopMerge contentLoopMerge) { |
||||
if (contentLoopMerge == null) { |
||||
return null; |
||||
} |
||||
return new LoopMergeProperty(contentLoopMerge.eachRow(), contentLoopMerge.columnExtend()); |
||||
} |
||||
|
||||
public int getEachRow() { |
||||
return eachRow; |
||||
} |
||||
|
||||
public void setEachRow(int eachRow) { |
||||
this.eachRow = eachRow; |
||||
} |
||||
|
||||
public int getColumnExtend() { |
||||
return columnExtend; |
||||
} |
||||
|
||||
public void setColumnExtend(int columnExtend) { |
||||
this.columnExtend = columnExtend; |
||||
} |
||||
} |
@ -0,0 +1,74 @@
|
||||
package com.alibaba.excel.metadata.property; |
||||
|
||||
import com.alibaba.excel.annotation.write.style.OnceAbsoluteMerge; |
||||
|
||||
/** |
||||
* Configuration from annotations |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class OnceAbsoluteMergeProperty { |
||||
/** |
||||
* First row |
||||
*/ |
||||
private int firstRowIndex; |
||||
/** |
||||
* Last row |
||||
*/ |
||||
private int lastRowIndex; |
||||
/** |
||||
* First column |
||||
*/ |
||||
private int firstColumnIndex; |
||||
/** |
||||
* Last row |
||||
*/ |
||||
private int lastColumnIndex; |
||||
|
||||
public OnceAbsoluteMergeProperty(int firstRowIndex, int lastRowIndex, int firstColumnIndex, int lastColumnIndex) { |
||||
this.firstRowIndex = firstRowIndex; |
||||
this.lastRowIndex = lastRowIndex; |
||||
this.firstColumnIndex = firstColumnIndex; |
||||
this.lastColumnIndex = lastColumnIndex; |
||||
} |
||||
|
||||
public static OnceAbsoluteMergeProperty build(OnceAbsoluteMerge onceAbsoluteMerge) { |
||||
if (onceAbsoluteMerge == null) { |
||||
return null; |
||||
} |
||||
return new OnceAbsoluteMergeProperty(onceAbsoluteMerge.firstRowIndex(), onceAbsoluteMerge.lastRowIndex(), |
||||
onceAbsoluteMerge.firstColumnIndex(), onceAbsoluteMerge.lastColumnIndex()); |
||||
} |
||||
|
||||
public int getFirstRowIndex() { |
||||
return firstRowIndex; |
||||
} |
||||
|
||||
public void setFirstRowIndex(int firstRowIndex) { |
||||
this.firstRowIndex = firstRowIndex; |
||||
} |
||||
|
||||
public int getLastRowIndex() { |
||||
return lastRowIndex; |
||||
} |
||||
|
||||
public void setLastRowIndex(int lastRowIndex) { |
||||
this.lastRowIndex = lastRowIndex; |
||||
} |
||||
|
||||
public int getFirstColumnIndex() { |
||||
return firstColumnIndex; |
||||
} |
||||
|
||||
public void setFirstColumnIndex(int firstColumnIndex) { |
||||
this.firstColumnIndex = firstColumnIndex; |
||||
} |
||||
|
||||
public int getLastColumnIndex() { |
||||
return lastColumnIndex; |
||||
} |
||||
|
||||
public void setLastColumnIndex(int lastColumnIndex) { |
||||
this.lastColumnIndex = lastColumnIndex; |
||||
} |
||||
} |
@ -0,0 +1,377 @@
|
||||
package com.alibaba.excel.metadata.property; |
||||
|
||||
import org.apache.poi.ss.usermodel.BorderStyle; |
||||
import org.apache.poi.ss.usermodel.BuiltinFormats; |
||||
import org.apache.poi.ss.usermodel.FillPatternType; |
||||
import org.apache.poi.ss.usermodel.HorizontalAlignment; |
||||
import org.apache.poi.ss.usermodel.IgnoredErrorType; |
||||
import org.apache.poi.ss.usermodel.IndexedColors; |
||||
import org.apache.poi.ss.usermodel.VerticalAlignment; |
||||
|
||||
import com.alibaba.excel.annotation.write.style.ContentStyle; |
||||
import com.alibaba.excel.annotation.write.style.HeadStyle; |
||||
import com.alibaba.excel.write.metadata.style.WriteFont; |
||||
|
||||
/** |
||||
* Configuration from annotations |
||||
* |
||||
* @author Jiaju Zhuang |
||||
*/ |
||||
public class StyleProperty { |
||||
/** |
||||
* Set the data format (must be a valid format). Built in formats are defined at {@link BuiltinFormats}. |
||||
*/ |
||||
private Short dataFormat; |
||||
/** |
||||
* Set the font for this style |
||||
*/ |
||||
private WriteFont writeFont; |
||||
/** |
||||
* Set the cell's using this style to be hidden |
||||
*/ |
||||
private Boolean hidden; |
||||
|
||||
/** |
||||
* Set the cell's using this style to be locked |
||||
*/ |
||||
private Boolean locked; |
||||
/** |
||||
* Turn on or off "Quote Prefix" or "123 Prefix" for the style, which is used to tell Excel that the thing which |
||||
* looks like a number or a formula shouldn't be treated as on. Turning this on is somewhat (but not completely, see |
||||
* {@link IgnoredErrorType}) like prefixing the cell value with a ' in Excel |
||||
*/ |
||||
private Boolean quotePrefix; |
||||
/** |
||||
* Set the type of horizontal alignment for the cell |
||||
*/ |
||||
private HorizontalAlignment horizontalAlignment; |
||||
/** |
||||
* Set whether the text should be wrapped. Setting this flag to <code>true</code> make all content visible within a |
||||
* cell by displaying it on multiple lines |
||||
* |
||||
*/ |
||||
private Boolean wrapped; |
||||
/** |
||||
* Set the type of vertical alignment for the cell |
||||
*/ |
||||
private VerticalAlignment verticalAlignment; |
||||
/** |
||||
* Set the degree of rotation for the text in the cell. |
||||
* |
||||
* Note: HSSF uses values from -90 to 90 degrees, whereas XSSF uses values from 0 to 180 degrees. The |
||||
* implementations of this method will map between these two value-ranges accordingly, however the corresponding |
||||
* getter is returning values in the range mandated by the current type of Excel file-format that this CellStyle is |
||||
* applied to. |
||||
*/ |
||||
private Short rotation; |
||||
/** |
||||
* Set the number of spaces to indent the text in the cell |
||||
*/ |
||||
private Short indent; |
||||
/** |
||||
* Set the type of border to use for the left border of the cell |
||||
*/ |
||||
private BorderStyle borderLeft; |
||||
/** |
||||
* Set the type of border to use for the right border of the cell |
||||
*/ |
||||
private BorderStyle borderRight; |
||||
/** |
||||
* Set the type of border to use for the top border of the cell |
||||
*/ |
||||
private BorderStyle borderTop; |
||||
|
||||
/** |
||||
* Set the type of border to use for the bottom border of the cell |
||||
*/ |
||||
private BorderStyle borderBottom; |
||||
/** |
||||
* Set the color to use for the left border |
||||
* |
||||
* @see IndexedColors |
||||
*/ |
||||
private Short leftBorderColor; |
||||
|
||||
/** |
||||
* Set the color to use for the right border |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
private Short rightBorderColor; |
||||
|
||||
/** |
||||
* Set the color to use for the top border |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
private Short topBorderColor; |
||||
/** |
||||
* Set the color to use for the bottom border |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
private Short bottomBorderColor; |
||||
/** |
||||
* Setting to one fills the cell with the foreground color... No idea about other values |
||||
* |
||||
* @see FillPatternType#SOLID_FOREGROUND |
||||
*/ |
||||
private FillPatternType fillPatternType; |
||||
|
||||
/** |
||||
* Set the background fill color. |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
private Short fillBackgroundColor; |
||||
|
||||
/** |
||||
* Set the foreground fill color <i>Note: Ensure Foreground color is set prior to background color.</i> |
||||
* |
||||
* @see IndexedColors |
||||
* |
||||
*/ |
||||
private Short fillForegroundColor; |
||||
/** |
||||
* Controls if the Cell should be auto-sized to shrink to fit if the text is too long |
||||
*/ |
||||
private Boolean shrinkToFit; |
||||
|
||||
public static StyleProperty build(HeadStyle headStyle) { |
||||
if (headStyle == null) { |
||||
return null; |
||||
} |
||||
StyleProperty styleProperty = new StyleProperty(); |
||||
styleProperty.setDataFormat(headStyle.dataFormat()); |
||||
styleProperty.setHidden(headStyle.hidden()); |
||||
styleProperty.setLocked(headStyle.locked()); |
||||
styleProperty.setQuotePrefix(headStyle.quotePrefix()); |
||||
styleProperty.setHorizontalAlignment(headStyle.horizontalAlignment()); |
||||
styleProperty.setWrapped(headStyle.wrapped()); |
||||
styleProperty.setVerticalAlignment(headStyle.verticalAlignment()); |
||||
styleProperty.setRotation(headStyle.rotation()); |
||||
styleProperty.setIndent(headStyle.indent()); |
||||
styleProperty.setBorderLeft(headStyle.borderLeft()); |
||||
styleProperty.setBorderRight(headStyle.borderRight()); |
||||
styleProperty.setBorderTop(headStyle.borderTop()); |
||||
styleProperty.setBorderBottom(headStyle.borderBottom()); |
||||
styleProperty.setLeftBorderColor(headStyle.leftBorderColor()); |
||||
styleProperty.setRightBorderColor(headStyle.rightBorderColor()); |
||||
styleProperty.setTopBorderColor(headStyle.topBorderColor()); |
||||
styleProperty.setBottomBorderColor(headStyle.bottomBorderColor()); |
||||
styleProperty.setFillPatternType(headStyle.fillPatternType()); |
||||
styleProperty.setFillBackgroundColor(headStyle.fillBackgroundColor()); |
||||
styleProperty.setFillForegroundColor(headStyle.fillForegroundColor()); |
||||
styleProperty.setShrinkToFit(headStyle.shrinkToFit()); |
||||
return styleProperty; |
||||
} |
||||
|
||||
public static StyleProperty build(ContentStyle contentStyle) { |
||||
if (contentStyle == null) { |
||||
return null; |
||||
} |
||||
StyleProperty styleProperty = new StyleProperty(); |
||||
styleProperty.setDataFormat(contentStyle.dataFormat()); |
||||
styleProperty.setHidden(contentStyle.hidden()); |
||||
styleProperty.setLocked(contentStyle.locked()); |
||||
styleProperty.setQuotePrefix(contentStyle.quotePrefix()); |
||||
styleProperty.setHorizontalAlignment(contentStyle.horizontalAlignment()); |
||||
styleProperty.setWrapped(contentStyle.wrapped()); |
||||
styleProperty.setVerticalAlignment(contentStyle.verticalAlignment()); |
||||
styleProperty.setRotation(contentStyle.rotation()); |
||||
styleProperty.setIndent(contentStyle.indent()); |
||||
styleProperty.setBorderLeft(contentStyle.borderLeft()); |
||||
styleProperty.setBorderRight(contentStyle.borderRight()); |
||||
styleProperty.setBorderTop(contentStyle.borderTop()); |
||||
styleProperty.setBorderBottom(contentStyle.borderBottom()); |
||||
styleProperty.setLeftBorderColor(contentStyle.leftBorderColor()); |
||||
styleProperty.setRightBorderColor(contentStyle.rightBorderColor()); |
||||
styleProperty.setTopBorderColor(contentStyle.topBorderColor()); |
||||
styleProperty.setBottomBorderColor(contentStyle.bottomBorderColor()); |
||||
styleProperty.setFillPatternType(contentStyle.fillPatternType()); |
||||
styleProperty.setFillBackgroundColor(contentStyle.fillBackgroundColor()); |
||||
styleProperty.setFillForegroundColor(contentStyle.fillForegroundColor()); |
||||
styleProperty.setShrinkToFit(contentStyle.shrinkToFit()); |
||||
return styleProperty; |
||||
} |
||||
|
||||
public Short getDataFormat() { |
||||
return dataFormat; |
||||
} |
||||
|
||||
public void setDataFormat(Short dataFormat) { |
||||
this.dataFormat = dataFormat; |
||||
} |
||||
|
||||
public WriteFont getWriteFont() { |
||||
return writeFont; |
||||
} |
||||
|
||||
public void setWriteFont(WriteFont writeFont) { |
||||
this.writeFont = writeFont; |
||||
} |
||||
|
||||
public Boolean getHidden() { |
||||
return hidden; |
||||
} |
||||
|
||||
public void setHidden(Boolean hidden) { |
||||
this.hidden = hidden; |
||||
} |
||||
|
||||
public Boolean getLocked() { |
||||
return locked; |
||||
} |
||||
|
||||
public void setLocked(Boolean locked) { |
||||
this.locked = locked; |
||||
} |
||||
|
||||
public Boolean getQuotePrefix() { |
||||
return quotePrefix; |
||||
} |
||||
|
||||
public void setQuotePrefix(Boolean quotePrefix) { |
||||
this.quotePrefix = quotePrefix; |
||||
} |
||||
|
||||
public HorizontalAlignment getHorizontalAlignment() { |
||||
return horizontalAlignment; |
||||
} |
||||
|
||||
public void setHorizontalAlignment(HorizontalAlignment horizontalAlignment) { |
||||
this.horizontalAlignment = horizontalAlignment; |
||||
} |
||||
|
||||
public Boolean getWrapped() { |
||||
return wrapped; |
||||
} |
||||
|
||||
public void setWrapped(Boolean wrapped) { |
||||
this.wrapped = wrapped; |
||||
} |
||||
|
||||
public VerticalAlignment getVerticalAlignment() { |
||||
return verticalAlignment; |
||||
} |
||||
|
||||
public void setVerticalAlignment(VerticalAlignment verticalAlignment) { |
||||
this.verticalAlignment = verticalAlignment; |
||||
} |
||||
|
||||
public Short getRotation() { |
||||
return rotation; |
||||
} |
||||
|
||||
public void setRotation(Short rotation) { |
||||
this.rotation = rotation; |
||||
} |
||||
|
||||
public Short getIndent() { |
||||
return indent; |
||||
} |
||||
|
||||
public void setIndent(Short indent) { |
||||
this.indent = indent; |
||||
} |
||||
|
||||
public BorderStyle getBorderLeft() { |
||||
return borderLeft; |
||||
} |
||||
|
||||
public void setBorderLeft(BorderStyle borderLeft) { |
||||
this.borderLeft = borderLeft; |
||||
} |
||||
|
||||
public BorderStyle getBorderRight() { |
||||
return borderRight; |
||||
} |
||||
|
||||
public void setBorderRight(BorderStyle borderRight) { |
||||
this.borderRight = borderRight; |
||||
} |
||||
|
||||
public BorderStyle getBorderTop() { |
||||
return borderTop; |
||||
} |
||||
|
||||
public void setBorderTop(BorderStyle borderTop) { |
||||
this.borderTop = borderTop; |
||||
} |
||||
|
||||
public BorderStyle getBorderBottom() { |
||||
return borderBottom; |
||||
} |
||||
|
||||
public void setBorderBottom(BorderStyle borderBottom) { |
||||
this.borderBottom = borderBottom; |
||||
} |
||||
|
||||
public Short getLeftBorderColor() { |
||||
return leftBorderColor; |
||||
} |
||||
|
||||
public void setLeftBorderColor(Short leftBorderColor) { |
||||
this.leftBorderColor = leftBorderColor; |
||||
} |
||||
|
||||
public Short getRightBorderColor() { |
||||
return rightBorderColor; |
||||
} |
||||
|
||||
public void setRightBorderColor(Short rightBorderColor) { |
||||
this.rightBorderColor = rightBorderColor; |
||||
} |
||||
|
||||
public Short getTopBorderColor() { |
||||
return topBorderColor; |
||||
} |
||||
|
||||
public void setTopBorderColor(Short topBorderColor) { |
||||
this.topBorderColor = topBorderColor; |
||||
} |
||||
|
||||
public Short getBottomBorderColor() { |
||||
return bottomBorderColor; |
||||
} |
||||
|
||||
public void setBottomBorderColor(Short bottomBorderColor) { |
||||
this.bottomBorderColor = bottomBorderColor; |
||||
} |
||||
|
||||
public FillPatternType getFillPatternType() { |
||||
return fillPatternType; |
||||
} |
||||
|
||||
public void setFillPatternType(FillPatternType fillPatternType) { |
||||
this.fillPatternType = fillPatternType; |
||||
} |
||||
|
||||
public Short getFillBackgroundColor() { |
||||
return fillBackgroundColor; |
||||
} |
||||
|
||||
public void setFillBackgroundColor(Short fillBackgroundColor) { |
||||
this.fillBackgroundColor = fillBackgroundColor; |
||||
} |
||||
|
||||
public Short getFillForegroundColor() { |
||||
return fillForegroundColor; |
||||
} |
||||
|
||||
public void setFillForegroundColor(Short fillForegroundColor) { |
||||
this.fillForegroundColor = fillForegroundColor; |
||||
} |
||||
|
||||
public Boolean getShrinkToFit() { |
||||
return shrinkToFit; |
||||
} |
||||
|
||||
public void setShrinkToFit(Boolean shrinkToFit) { |
||||
this.shrinkToFit = shrinkToFit; |
||||
} |
||||
} |
@ -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(); |
||||
} |
||||
} |
@ -1,39 +0,0 @@
|
||||
package com.alibaba.excel.read.listener; |
||||
|
||||
import com.alibaba.excel.context.AnalysisContext; |
||||
import com.alibaba.excel.event.AnalysisEventListener; |
||||
import com.alibaba.excel.read.listener.event.AnalysisFinishEvent; |
||||
|
||||
/** |
||||
* Registry center. |
||||
* |
||||
* @author jipengfei |
||||
*/ |
||||
public interface ReadListenerRegistryCenter { |
||||
|
||||
/** |
||||
* register |
||||
* |
||||
* @param listener |
||||
* Analysis listener |
||||
*/ |
||||
void register(AnalysisEventListener listener); |
||||
|
||||
/** |
||||
* Parse one row to notify all event listeners |
||||
* |
||||
* @param event |
||||
* parse event |
||||
* @param analysisContext |
||||
* Analysis context |
||||
*/ |
||||
void notifyEndOneRow(AnalysisFinishEvent event, AnalysisContext analysisContext); |
||||
|
||||
/** |
||||
* Notify after all analysed |
||||
* |
||||
* @param analysisContext |
||||
* Analysis context |
||||
*/ |
||||
void notifyAfterAllAnalysed(AnalysisContext analysisContext); |
||||
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue