Skip to content

Commit c42183d

Browse files
authored
Merge pull request #3919 from alibaba/bugfix
Bugfix
2 parents 898ca7d + efa7dff commit c42183d

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

easyexcel-test/src/test/java/com/alibaba/easyexcel/test/temp/Lock2Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void test() throws Exception {
5252
File file = new File("/Users/zhuangjiaju/IdeaProjects/easyexcel/src/test/resources/converter/converter07.xlsx");
5353

5454
List<Object> list = EasyExcel.read(
55-
"/Users/zhuangjiaju/Downloads/证券投资基金估值表_外贸信托-稳盈淳享37号集合资金信托计划_2024-07-23.xls")
55+
"/Users/zhuangjiaju/Downloads/证券投资基金估值表_外贸信托-稳盈淳享37号集合资金信托计划_2024-07-23(1).xls")
5656
//.useDefaultListener(false)
5757
.sheet(0)
5858
.headRowNumber(0).doReadSync();

pom.xml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,12 @@
9393
<version>3.3.4</version>
9494
</dependency>
9595

96+
<dependency>
97+
<groupId>org.apache.commons</groupId>
98+
<artifactId>commons-csv</artifactId>
99+
<version>1.11.0</version>
100+
</dependency>
101+
96102
<dependency>
97103
<groupId>org.apache.poi</groupId>
98104
<artifactId>poi</artifactId>
@@ -103,16 +109,17 @@
103109
<artifactId>poi-ooxml</artifactId>
104110
<version>5.2.5</version>
105111
</dependency>
106-
<dependency>
107-
<groupId>org.apache.commons</groupId>
108-
<artifactId>commons-csv</artifactId>
109-
<version>1.11.0</version>
110-
</dependency>
112+
111113
<dependency>
112114
<groupId>org.ehcache</groupId>
113115
<artifactId>ehcache</artifactId>
114116
<version>3.9.11</version>
115117
</dependency>
118+
<dependency>
119+
<groupId>commons-io</groupId>
120+
<artifactId>commons-io</artifactId>
121+
<version>2.16.1</version>
122+
</dependency>
116123
<dependency>
117124
<groupId>org.slf4j</groupId>
118125
<artifactId>slf4j-api</artifactId>

update.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 4.0.2
22

33
* 兼容某些特殊的xls: 修改了内置的样式导致判断样式错误
4+
* 重新加回 `commons-io`
45

56
# 4.0.1
67

0 commit comments

Comments
 (0)