Skip to content

Commit 2ddad00

Browse files
committed
更新
1 parent 6893910 commit 2ddad00

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,17 @@
2121
* 注解Value对应列标题,Required对应正则,可自己写正则表达式或者直接使用RegHelper
2222
* 实体bean数据要比hashMap慢,7w条数据慢800ms,加入正则减慢速度(测试中加入了正则)
2323
* 加在一起没有200行,就那么一写,勿喷。
24-
## 效果
24+
25+
## 使用方法说明
26+
1. 本程序只能读取简单格式的xls文件,文件布局如下(标准的行列结构):<br>
27+
28+
| 标题1| 标题2| 标题3|
29+
------|------|----
30+
foo | foo | foo
31+
bar | bar | bar
32+
baz | baz | baz
33+
34+
## 效果
2535
![ExcelReadshua](效果.png)
2636
## 实体类截图
2737
![ExcelReadshua](实体类.png)

seven/wapperInt/Wrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public void setEnd_sheet(Integer end_sheet) {
211211
}
212212

213213
}
214-
public abstract List<T> Creart() throws Exception;
214+
public abstract List<T> Create() throws Exception;
215215
public abstract Wrapper Filter(DataFilterInterface<T> filter);
216216
public abstract Wrapper Process(DataProcessInterface<T> process);
217217
public abstract Wrapper Sort(Comparator<? super T> c);

0 commit comments

Comments
 (0)