修改项目名easyexcel-plus为FastExcel

This commit is contained in:
jipengfei-jpf 2024-11-27 10:00:04 +08:00
parent ddb03e76d9
commit 46b926474c
596 changed files with 55 additions and 55 deletions

View File

@ -5,15 +5,15 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>cn.idev.excel</groupId> <groupId>cn.idev.excel</groupId>
<artifactId>easyexcel-plus-parent</artifactId> <artifactId>fastexcel-parent</artifactId>
<version>${revision}</version> <version>${revision}</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
<url>https://github.com/CodePhiliaX/easyexcel-plus</url> <url>https://github.com/CodePhiliaX/fastexcel</url>
<packaging>jar</packaging> <packaging>jar</packaging>
<artifactId>easyexcel-plus-core</artifactId> <artifactId>fastexcel-core</artifactId>
<name>easyexcel-plus-core</name> <name>fastexcel-core</name>
<version>${revision}</version> <version>${revision}</version>
<dependencies> <dependencies>
@ -58,7 +58,7 @@
</dependency> </dependency>
<dependency> <dependency>
<groupId>cn.idev.excel</groupId> <groupId>cn.idev.excel</groupId>
<artifactId>easyexcel-plus-support</artifactId> <artifactId>fastexcel-support</artifactId>
<version>0.0.1</version> <version>0.0.1</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -174,7 +174,7 @@ public class ExcelAnalyserImpl implements ExcelAnalyser {
} }
// close csv. // close csv.
// https://github.com/CodePhiliaX/easyexcel-plus/issues/2309 // https://github.com/CodePhiliaX/fastexcel/issues/2309
try { try {
if ((readWorkbookHolder instanceof CsvReadWorkbookHolder) if ((readWorkbookHolder instanceof CsvReadWorkbookHolder)
&& ((CsvReadWorkbookHolder) readWorkbookHolder).getCsvParser() != null && ((CsvReadWorkbookHolder) readWorkbookHolder).getCsvParser() != null

View File

@ -34,7 +34,7 @@ public class DummyRecordHandler extends AbstractXlsRecordHandler implements Igno
xlsReadSheetHolder.setTempRowType(RowTypeEnum.EMPTY); xlsReadSheetHolder.setTempRowType(RowTypeEnum.EMPTY);
} else if (record instanceof MissingCellDummyRecord) { } else if (record instanceof MissingCellDummyRecord) {
MissingCellDummyRecord mcdr = (MissingCellDummyRecord)record; 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" // 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 // records, so if the existing data, empty data is ignored
xlsReadSheetHolder.getCellMap().putIfAbsent(mcdr.getColumn(), xlsReadSheetHolder.getCellMap().putIfAbsent(mcdr.getColumn(),

Some files were not shown because too many files have changed in this diff Show More