excel-kit/README.md
2018-08-18 22:31:03 +08:00

12 lines
499 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ExcelUtil
### 功能
一、导出
1. poi导出 支持多sheet导出
2. 非poi导出导出数据量理论无上限导出数据类型不限制List<T>(JDK8+),
如果是jdk7及以下版本未做支持需要修改部分代码
3. 支持excel压缩导出节约网络资源
二、读取excel导入数据
1、读取所有sheet里面的数据内容读取结果为Map<String,List<Map>> (即:{sheetName:[{k1:v1,k2:v2}]})
2、根据sheetName读取指定sheet的数据结果为List<Map>