Skip to content

Commit

Permalink
修改项目名easyexcel-plus为FastExcel
Browse files Browse the repository at this point in the history
  • Loading branch information
Chat2DB-Pro committed Nov 27, 2024
1 parent 6cdeb90 commit 88089db
Show file tree
Hide file tree
Showing 596 changed files with 55 additions and 55 deletions.
10 changes: 5 additions & 5 deletions easyexcel-plus-core/pom.xml → fastexcel-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.idev.excel</groupId>
<artifactId>easyexcel-plus-parent</artifactId>
<artifactId>fastexcel-parent</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<url>https://github.com/CodePhiliaX/easyexcel-plus</url>
<url>https://github.com/CodePhiliaX/fastexcel</url>
<packaging>jar</packaging>
<artifactId>easyexcel-plus-core</artifactId>
<name>easyexcel-plus-core</name>
<artifactId>fastexcel-core</artifactId>
<name>fastexcel-core</name>
<version>${revision}</version>

<dependencies>
Expand Down Expand Up @@ -58,7 +58,7 @@
</dependency>
<dependency>
<groupId>cn.idev.excel</groupId>
<artifactId>easyexcel-plus-support</artifactId>
<artifactId>fastexcel-support</artifactId>
<version>0.0.1</version>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public void finish() {
}

// close csv.
// https://github.com/CodePhiliaX/easyexcel-plus/issues/2309
// https://github.com/CodePhiliaX/fastexcel/issues/2309
try {
if ((readWorkbookHolder instanceof CsvReadWorkbookHolder)
&& ((CsvReadWorkbookHolder) readWorkbookHolder).getCsvParser() != null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void processRecord(XlsReadContext xlsReadContext, Record record) {
xlsReadSheetHolder.setTempRowType(RowTypeEnum.EMPTY);
} else if (record instanceof MissingCellDummyRecord) {
MissingCellDummyRecord mcdr = (MissingCellDummyRecord)record;
// https://github.com/CodePhiliaX/easyexcel-plus/issues/2236
// https://github.com/CodePhiliaX/fastexcel/issues/2236
// Some abnormal XLS, in the case of data already exist, or there will be a "MissingCellDummyRecord"
// records, so if the existing data, empty data is ignored
xlsReadSheetHolder.getCellMap().putIfAbsent(mcdr.getColumn(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private Object buildNoModel(Map<Integer, ReadCellData<?>> cellDataMap, ReadSheet
}
}
}
// fix https://github.com/CodePhiliaX/easyexcel-plus/issues/2014
// fix https://github.com/CodePhiliaX/fastexcel/issues/2014
int headSize = calculateHeadSize(readSheetHolder);
while (index < headSize) {
map.put(index, null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class ReadSheetHolder extends AbstractReadHolder {
private ReadCellData<?> tempCellData;
/**
* Read the size of the largest head in sheet head data.
* see https://github.com/CodePhiliaX/easyexcel-plus/issues/2014
* see https://github.com/CodePhiliaX/fastexcel/issues/2014
*/
private Integer maxNotEmptyDataHeadSize;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class BeanMapUtils {
* <code>BeanMap.Generator</code> instead of this static method.
*
* Custom naming policy to prevent null pointer exceptions.
* see: https://github.com/CodePhiliaX/easyexcel-plus/issues/2064
* see: https://github.com/CodePhiliaX/fastexcel/issues/2064
*
* @param bean the JavaBean underlying the map
* @return a new <code>BeanMap</code> instance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ private void addBasicTypeToExcel(RowData oneRowData, Row row, int rowIndex, int
if (dataIndex >= oneRowData.size()) {
return;
}
// fix https://github.com/CodePhiliaX/easyexcel-plus/issues/1702
// fix https://github.com/CodePhiliaX/fastexcel/issues/1702
// If there is data, it is written to the next cell
maxCellIndex++;

Expand Down Expand Up @@ -196,7 +196,7 @@ private void addJavaObjectToExcel(Object oneRowData, Row row, int rowIndex, int
writeContext, row, rowIndex, null, maxCellIndex, relativeRowIndex, Boolean.FALSE, excelContentProperty);
WriteHandlerUtils.beforeCellCreate(cellWriteHandlerContext);

// fix https://github.com/CodePhiliaX/easyexcel-plus/issues/1870
// fix https://github.com/CodePhiliaX/fastexcel/issues/1870
// If there is data, it is written to the next cell
Cell cell = WorkBookUtil.createCell(row, maxCellIndex);
cellWriteHandlerContext.setCell(cell);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ private void checkRowHeight(AnalysisCell analysisCell, FillConfig fillConfig, bo
if (!analysisCell.getFirstRow() || !WriteDirectionEnum.VERTICAL.equals(fillConfig.getDirection())) {
return;
}
// fix https://github.com/CodePhiliaX/easyexcel-plus/issues/1869
// fix https://github.com/CodePhiliaX/fastexcel/issues/1869
if (isOriginalCell && PoiUtils.customHeight(row)) {
collectionRowHeightCache.put(currentUniqueDataFlag, row.getHeight());
return;
Expand Down Expand Up @@ -541,7 +541,7 @@ private String prepareData(Cell cell, int rowIndex, int columnIndex,
analysisCell.getVariableList().add(variable);
if (lastPrepareDataIndex == prefixIndex) {
analysisCell.getPrepareDataList().add(StringUtils.EMPTY);
// fix https://github.com/CodePhiliaX/easyexcel-plus/issues/2035
// fix https://github.com/CodePhiliaX/fastexcel/issues/2035
if (lastPrepareDataIndex != 0) {
analysisCell.setOnlyOneVariable(Boolean.FALSE);
}
Expand All @@ -553,7 +553,7 @@ private String prepareData(Cell cell, int rowIndex, int columnIndex,
}
lastPrepareDataIndex = suffixIndex + 1;
}
// fix https://github.com/CodePhiliaX/easyexcel-plus/issues/1552
// fix https://github.com/CodePhiliaX/fastexcel/issues/1552
// When read template, XLSX data may be in `is` labels, and set the time set in `v` label, lead to can't set
// up successfully, so all data format to empty first.
if (analysisCell != null && CollectionUtils.isNotEmpty(analysisCell.getVariableList())) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* Handle the problem of unable to write dimension.
*
* https://github.com/CodePhiliaX/easyexcel-plus/issues/1282
* https://github.com/CodePhiliaX/fastexcel/issues/1282
*
* @author Jiaju Zhuang
*/
Expand Down
Loading

0 comments on commit 88089db

Please sign in to comment.