Java实现Excel导入导出操作详解
前言
最近抽了两天时间,把java实现表格的相关操作进行了封装,本次封装是基于 poi 的二次开发,最终使用只需要调用一个工具类中的方法,就能满足业务中绝大部门的导入和导出需求。
1. 功能测试
1.1 测试准备
在做测试前,我们需要將【2. 环境准备】中的四个文件拷贝在工程里(如:我这里均放在了com.zyq.util.excel 包下)。
1.2 数据导入
1.2.1 导入解析为json
比如,我们有下面一个表格:
controller 代码:
@postmapping("/import") public jsonarray importuser(@requestpart("file")multipartfile file) throws exception { jsonarray array = excelutils.readmultipartfile(file); system.out.println("导入数据为:" + array); return array; }
测试效果:
1.2.2 导入解析为对象(基础)
首先,你需要创建一个与导入表格对应的java实体对象,并打上对应的excel解析的导入注解,@excelimport注解的value则为表头名称。
controller 代码:
@postmapping("/import") public void importuser(@requestpart("file")multipartfile file) throws exception { list<user> users = excelutils.readmultipartfile(file, user.class); for (user user : users) { system.out.println(user.tostring()); } }
测试效果:
1.2.3 导入解析为对象(字段自动映射)
对于有的枚举数据,通常我们导入的时候,表格中的数据是值,而在数据保存时,往往用的是键,比如:我们用sex=1可以表示为男,sex=2表示为女,那么我们通过配置也可以达到导入时,数据的自动映射。
那么,我们只需要将java实体中的对象sex字段的类型改为对应的数字类型integer,然后再注解中配置好 kv 属性(属性格式为:键1-值1;键2-值2;键3-值3;.....)
cotroller 代码略(和 1.2.2 完全一致)。
测试效果:可以看到已经自动映射成功了。
1.2.4 导入解析为对象(获取行号)
我们在做页面数据导入时,有时候可能需要获取行号,好追踪导入的数据。
那么,我们只需要在对应的实体中加入一个 int 类型的 rownum 字段即可。
cotroller 代码略(和 1.2.2 完全一致)。
测试效果:
1.2.5 导入解析为对象(获取原始数据)
在做页面数据导入的时候,如果某行存在错误,一般我们会将原始的数据拿出来分析,为什么会造成数据错误。那么,我们在实体类中,增加一个 string 类型的 rowdata 字段即可。
cotroller 代码略(和 1.2.2 完全一致)。
测试效果:
1.2.6 导入解析为对象(获取错误提示)
当我们在导入数据的时候,如果某行数据存在,字段类型不正确,长度超过最大限制(详见1.2.7),必填字段验证(1.2.8),数据唯一性验证(1.2.9)等一些错误时候,我们可以往对象中添加一个 string 类型的 rowtips 字段,则可以直接拿到对应的错误信息。
比如,我们将表格中赵子龙的性别改为f(f并不是映射数据),将大乔的性别改为二十八(不能转换为integer类型数据)。
cotroller 代码略(和 1.2.2 完全一致)。
测试效果:可以看到,我们可以通过 rowtips 直接拿到对应的错误数据提示。
1.2.7 导入解析为对象(限制字段长度)
比如,我们手机通常为11为长度,那么不妨限制电话的最大长度位数为11位。
对应的做法,就是在 @excelimport 注解中,设置 maxlength = 11 即可。
比如,我们将诸葛孔明的电话长度设置为超过11位数的一个字符串。
cotroller 代码略(和 1.2.2 完全一致)。
测试效果:
1.2.8 导入解析为对象(必填字段验证)
我们在做数据导入的时候,往往还会有一些必填字段,比如用户的名称,电话。
那么,我们只需要在 @excelimport 注解属性中,加上 required = true 即可。
我们将诸葛孔明的电话,以及第4行的姓名去掉,进行测试。
cotroller 代码略(和 1.2.2 完全一致)。
测试效果:
1.2.9 导入解析为对象(数据唯一性验证)
(1) 单字段唯一性验证
我们在导入数据的时候,某个字段是具有唯一性的,比如我们这里假设规定姓名不能重复,那么则可以在对应字段的 @excelimport 注解上加上 unique = true 属性。
这里我们构建2条姓名一样的数据进行测试。
cotroller 代码略(和 1.2.2 完全一致)。
测试效果:
(2)多字段唯一性验证
如果你导入的数据存在多字段唯一性验证这种情况,只需要将每个对应字段的 @excelimport 注解属性中,都加上 required = true 即可。
比如:我们将姓名和电话两个字段进行联合唯一性验证(即不能存在有名称和电话都一样的数据,单个字段属性重复允许)。
首先,我们将刚刚(1)的数据进行导入。
测试效果:可以看到,虽然名称有相同,但电话不相同,所以这里并没有提示唯一性验证错误。
现在,我们将最后一行的电话也改为和第1行一样的,于是,现在就存在了违背唯一性的两条数据。
测试效果:可以看到,我们的联合唯一性验证生效了。
1.3 数据导出
1.3.1 动态导出(基础)
这种方式十分灵活,表中的数据,完全自定义设置。
controller 代码:
@getmapping("/export") public void export(httpservletresponse response) { // 表头数据 list<object> head = arrays.aslist("姓名","年龄","性别","头像"); // 用户1数据 list<object> user1 = new arraylist<>(); user1.add("诸葛亮"); user1.add(60); user1.add("男"); user1.add("https://profile.csdnimg.cn/a/7/3/3_sunnyzyq"); // 用户2数据 list<object> user2 = new arraylist<>(); user2.add("大乔"); user2.add(28); user2.add("女"); user2.add("https://profile.csdnimg.cn/6/1/9/0_m0_48717371"); // 将数据汇总 list<list<object>> sheetdatalist = new arraylist<>(); sheetdatalist.add(head); sheetdatalist.add(user1); sheetdatalist.add(user2); // 导出数据 excelutils.export(response,"用户表", sheetdatalist); }
代码截图:
由于是 get 请求,我们直接在浏览器上输入请求地址即可触发下载。
打开下载表格,我们可以看到,表中的数据和我们代码组装的顺序一致。
1.3.2 动态导出(导出图片)
如果你的导出中,需要将对应图片链接直接显示为图片的话,那么,这里也是可以的,只需要将对应的类型转为 java.net.url 类型即可(注意:转的时候有异常处理,为了方便演示,我这里直接抛出)
测试效果:
1.3.3 动态导出(实现下拉列表)
我们在做一些数据导出的时候,可能要对某一行的下拉数据进行约束限制。
比如,当我们下载一个导入模版的时候,我们可以将性别,城市对应的列设置为下拉选择。
测试效果:
1.3.4 动态导出(横向合并)
比如,我们将表头横向合并,只需要将合并的单元格设置为 excelutils.column_merge 即可。
测试效果:可以看到表头的地址已经被合并了。
1.3.5 动态导出(纵向合并)
除了横向合并,我们还可以进行纵向合并,只需要将合并的单元格设置为 excelutils.row_merge 即可。
测试效果:
1.3.6 导出模板(基础)
我们在做数据导入的时候,往往首先会提供一个模版供其下载,这样用户在导入的时候才知道如何去填写数据。导出模板除了可以用上面的动态导出,这里还提供了一种更加便捷的写法。只需要创建一个类,然后再对应字段上打上 @excelexport 注解类即可。
controller 代码:
@getmapping("/export") public void export(httpservletresponse response) { excelutils.exporttemplate(response, "用户表", user.class); }
代码截图:
测试效果:
1.3.7 导出模板(附示例数据)
我们在做模版下载时候,有时往往会携带一条样本数据,好提示用户数据格式是什么,那么我们只需要在对应字段上进行配置即可。
controller代码:
测试效果:
1.3.8 按对象导出(基础)
我们还可以通过 list 对象,对数据直接进行导出。首先,同样需要在对应类的字段上,设置导出名称。
controller 代码:
测试效果:
1.3.9 按对象导出(数据映射)
在上面 1.3.8 的导出中,我们可以看到,性别数据导出来是1和2,这个不利于用户体验,应该需要转换为对应的中文,我们可以在字段注解上进行对应的配置。
controller 代码略(和1.3.8完全一致)
测试效果:可以看到1和2显示为了对应的男和女
1.3.10 按对象导出(调整表头顺序)
如果你需要对表头字段进行排序,有两种方式:
第一种:按照表格的顺序,排列java类中的字段;
第二种:在 @excelexport 注解中,指定 sort 属性,其值越少,排名越靠前。
controller 代码略(和1.3.8完全一致)
测试效果:可以看到,此时导出数据的表头顺序,和我们指定的顺序完全一致。
2. 环境准备
2.1 maven 依赖
本次工具类的封装主要依赖于阿里巴巴的json包,以及表格处理的poi包,所以我们需要导入这两个库的依赖包,另外,我们还需要文件上传的相关包,毕竟我们在浏览器页面,做excel导入时,是上传的excel文件。
<!-- 文件上传 --> <dependency> <groupid>org.apache.httpcomponents</groupid> <artifactid>httpmime</artifactid> <artifactid>4.5.7</artifactid> </dependency> <!-- json --> <dependency> <groupid>com.alibaba</groupid> <artifactid>fastjson</artifactid> <version>1.2.41</version> </dependency> <!-- poi --> <dependency> <groupid>org.apache.poi</groupid> <artifactid>poi-ooxml</artifactid> <version>3.16</version> </dependency>
2.2 类文件
excelutils
package com.zyq.util.excel; import java.io.bytearrayoutputstream; import java.io.file; import java.io.fileinputstream; import java.io.fileoutputstream; import java.io.ioexception; import java.io.inputstream; import java.lang.reflect.field; import java.math.bigdecimal; import java.math.roundingmode; import java.net.url; import java.text.numberformat; import java.text.simpledateformat; import java.util.*; import java.util.map.entry; import javax.servlet.servletoutputstream; import javax.servlet.http.httpservletresponse; import com.zyq.entity.user; import org.apache.poi.hssf.usermodel.hssfdatavalidation; import org.apache.poi.hssf.usermodel.hssfworkbook; import org.apache.poi.poifs.filesystem.poifsfilesystem; import org.apache.poi.ss.usermodel.cell; import org.apache.poi.ss.usermodel.cellstyle; import org.apache.poi.ss.usermodel.celltype; import org.apache.poi.ss.usermodel.clientanchor.anchortype; import org.apache.poi.ss.usermodel.datavalidation; import org.apache.poi.ss.usermodel.datavalidationconstraint; import org.apache.poi.ss.usermodel.datavalidationhelper; import org.apache.poi.ss.usermodel.drawing; import org.apache.poi.ss.usermodel.fillpatterntype; import org.apache.poi.ss.usermodel.horizontalalignment; import org.apache.poi.ss.usermodel.indexedcolors; import org.apache.poi.ss.usermodel.row; import org.apache.poi.ss.usermodel.sheet; import org.apache.poi.ss.usermodel.verticalalignment; import org.apache.poi.ss.usermodel.workbook; import org.apache.poi.ss.util.cellrangeaddress; import org.apache.poi.ss.util.cellrangeaddresslist; import org.apache.poi.xssf.streaming.sxssfworkbook; import org.apache.poi.xssf.usermodel.xssfclientanchor; import org.apache.poi.xssf.usermodel.xssfworkbook; import org.springframework.web.multipart.multipartfile; import com.alibaba.fastjson.jsonarray; import com.alibaba.fastjson.jsonobject; /** * excel导入导出工具类 * * @author sunnyzyq * @date 2021/12/17 */ public class excelutils { private static final string xlsx = ".xlsx"; private static final string xls = ".xls"; public static final string row_merge = "row_merge"; public static final string column_merge = "column_merge"; private static final string date_format = "yyyy-mm-dd hh:mm:ss"; private static final string row_num = "rownum"; private static final string row_data = "rowdata"; private static final string row_tips = "rowtips"; private static final int cell_other = 0; private static final int cell_row_merge = 1; private static final int cell_column_merge = 2; private static final int img_height = 30; private static final int img_width = 30; private static final char lean_line = '/'; private static final int bytes_default_length = 10240; private static final numberformat number_format = numberformat.getnumberinstance(); public static <t> list<t> readfile(file file, class<t> clazz) throws exception { jsonarray array = readfile(file); return getbeanlist(array, clazz); } public static <t> list<t> readmultipartfile(multipartfile mfile, class<t> clazz) throws exception { jsonarray array = readmultipartfile(mfile); return getbeanlist(array, clazz); } public static jsonarray readfile(file file) throws exception { return readexcel(null, file); } public static jsonarray readmultipartfile(multipartfile mfile) throws exception { return readexcel(mfile, null); } private static <t> list<t> getbeanlist(jsonarray array, class<t> clazz) throws exception { list<t> list = new arraylist<>(); map<integer, string> uniquemap = new hashmap<>(16); for (int i = 0; i < array.size(); i++) { list.add(getbean(clazz, array.getjsonobject(i), uniquemap)); } return list; } /** * 获取每个对象的数据 */ private static <t> t getbean(class<t> c, jsonobject obj, map<integer, string> uniquemap) throws exception { t t = c.newinstance(); field[] fields = c.getdeclaredfields(); list<string> errmsglist = new arraylist<>(); boolean hasrowtipsfield = false; stringbuilder uniquebuilder = new stringbuilder(); int rownum = 0; for (field field : fields) { // 行号 if (field.getname().equals(row_num)) { rownum = obj.getinteger(row_num); field.setaccessible(true); field.set(t, rownum); continue; } // 是否需要设置异常信息 if (field.getname().equals(row_tips)) { hasrowtipsfield = true; continue; } // 原始数据 if (field.getname().equals(row_data)) { field.setaccessible(true); field.set(t, obj.tostring()); continue; } // 设置对应属性值 setfieldvalue(t,field, obj, uniquebuilder, errmsglist); } // 数据唯一性校验 if (uniquebuilder.length() > 0) { if (uniquemap.containsvalue(uniquebuilder.tostring())) { set<integer> rownumkeys = uniquemap.keyset(); for (integer num : rownumkeys) { if (uniquemap.get(num).equals(uniquebuilder.tostring())) { errmsglist.add(string.format("数据唯一性校验失败,(%s)与第%s行重复)", uniquebuilder, num)); } } } else { uniquemap.put(rownum, uniquebuilder.tostring()); } } // 失败处理 if (errmsglist.isempty() && !hasrowtipsfield) { return t; } stringbuilder sb = new stringbuilder(); int size = errmsglist.size(); for (int i = 0; i < size; i++) { if (i == size - 1) { sb.append(errmsglist.get(i)); } else { sb.append(errmsglist.get(i)).append(";"); } } // 设置错误信息 for (field field : fields) { if (field.getname().equals(row_tips)) { field.setaccessible(true); field.set(t, sb.tostring()); } } return t; } private static <t> void setfieldvalue(t t, field field, jsonobject obj, stringbuilder uniquebuilder, list<string> errmsglist) { // 获取 excelimport 注解属性 excelimport annotation = field.getannotation(excelimport.class); if (annotation == null) { return; } string cname = annotation.value(); if (cname.trim().length() == 0) { return; } // 获取具体值 string val = null; if (obj.containskey(cname)) { val = getstring(obj.getstring(cname)); } if (val == null) { return; } field.setaccessible(true); // 判断是否必填 boolean require = annotation.required(); if (require && val.isempty()) { errmsglist.add(string.format("[%s]不能为空", cname)); return; } // 数据唯一性获取 boolean unique = annotation.unique(); if (unique) { if (uniquebuilder.length() > 0) { uniquebuilder.append("--").append(val); } else { uniquebuilder.append(val); } } // 判断是否超过最大长度 int maxlength = annotation.maxlength(); if (maxlength > 0 && val.length() > maxlength) { errmsglist.add(string.format("[%s]长度不能超过%s个字符(当前%s个字符)", cname, maxlength, val.length())); } // 判断当前属性是否有映射关系 linkedhashmap<string, string> kvmap = getkvmap(annotation.kv()); if (!kvmap.isempty()) { boolean ismatch = false; for (string key : kvmap.keyset()) { if (kvmap.get(key).equals(val)) { val = key; ismatch = true; break; } } if (!ismatch) { errmsglist.add(string.format("[%s]的值不正确(当前值为%s)", cname, val)); return; } } // 其余情况根据类型赋值 string fieldclassname = field.gettype().getsimplename(); try { if ("string".equalsignorecase(fieldclassname)) { field.set(t, val); } else if ("boolean".equalsignorecase(fieldclassname)) { field.set(t, boolean.valueof(val)); } else if ("int".equalsignorecase(fieldclassname) || "integer".equals(fieldclassname)) { try { field.set(t, integer.valueof(val)); } catch (numberformatexception e) { errmsglist.add(string.format("[%s]的值格式不正确(当前值为%s)", cname, val)); } } else if ("double".equalsignorecase(fieldclassname)) { field.set(t, double.valueof(val)); } else if ("long".equalsignorecase(fieldclassname)) { field.set(t, long.valueof(val)); } else if ("bigdecimal".equalsignorecase(fieldclassname)) { field.set(t, new bigdecimal(val)); } } catch (exception e) { e.printstacktrace(); } } private static jsonarray readexcel(multipartfile mfile, file file) throws ioexception { boolean filenotexist = (file == null || !file.exists()); if (mfile == null && filenotexist) { return new jsonarray(); } // 解析表格数据 inputstream in; string filename; if (mfile != null) { // 上传文件解析 in = mfile.getinputstream(); filename = getstring(mfile.getoriginalfilename()).tolowercase(); } else { // 本地文件解析 in = new fileinputstream(file); filename = file.getname().tolowercase(); } workbook book; if (filename.endswith(xlsx)) { book = new xssfworkbook(in); } else if (filename.endswith(xls)) { poifsfilesystem poifsfilesystem = new poifsfilesystem(in); book = new hssfworkbook(poifsfilesystem); } else { return new jsonarray(); } jsonarray array = read(book); book.close(); in.close(); return array; } private static jsonarray read(workbook book) { // 获取 excel 文件第一个 sheet 页面 sheet sheet = book.getsheetat(0); return readsheet(sheet); } private static jsonarray readsheet(sheet sheet) { // 首行下标 int rowstart = sheet.getfirstrownum(); // 尾行下标 int rowend = sheet.getlastrownum(); // 获取表头行 row headrow = sheet.getrow(rowstart); if (headrow == null) { return new jsonarray(); } int cellstart = headrow.getfirstcellnum(); int cellend = headrow.getlastcellnum(); map<integer, string> keymap = new hashmap<>(); for (int j = cellstart; j < cellend; j++) { // 获取表头数据 string val = getcellvalue(headrow.getcell(j)); if (val != null && val.trim().length() != 0) { keymap.put(j, val); } } // 如果表头没有数据则不进行解析 if (keymap.isempty()) { return (jsonarray) collections.emptylist(); } // 获取每行json对象的值 jsonarray array = new jsonarray(); // 如果首行与尾行相同,表明只有一行,返回表头数据 if (rowstart == rowend) { jsonobject obj = new jsonobject(); // 添加行号 obj.put(row_num, 1); for (int i : keymap.keyset()) { obj.put(keymap.get(i), ""); } array.add(obj); return array; } for (int i = rowstart + 1; i <= rowend; i++) { row eachrow = sheet.getrow(i); jsonobject obj = new jsonobject(); // 添加行号 obj.put(row_num, i + 1); stringbuilder sb = new stringbuilder(); for (int k = cellstart; k < cellend; k++) { if (eachrow != null) { string val = getcellvalue(eachrow.getcell(k)); // 所有数据添加到里面,用于判断该行是否为空 sb.append(val); obj.put(keymap.get(k), val); } } if (sb.length() > 0) { array.add(obj); } } return array; } private static string getcellvalue(cell cell) { // 空白或空 if (cell == null || cell.getcelltypeenum() == celltype.blank) { return ""; } // string类型 if (cell.getcelltypeenum() == celltype.string) { string val = cell.getstringcellvalue(); if (val == null || val.trim().length() == 0) { return ""; } return val.trim(); } // 数字类型 if (cell.getcelltypeenum() == celltype.numeric) { // 科学计数法类型 return number_format.format(cell.getnumericcellvalue()) + ""; } // 布尔值类型 if (cell.getcelltypeenum() == celltype.boolean) { return cell.getbooleancellvalue() + ""; } // 错误类型 return cell.getcellformula(); } public static <t> void exporttemplate(httpservletresponse response, string filename, class<t> clazz) { exporttemplate(response, filename, filename, clazz, false); } public static <t> void exporttemplate(httpservletresponse response, string filename, string sheetname, class<t> clazz) { exporttemplate(response, filename, sheetname, clazz, false); } public static <t> void exporttemplate(httpservletresponse response, string filename, class<t> clazz, boolean iscontainexample) { exporttemplate(response, filename, filename, clazz, iscontainexample); } public static <t> void exporttemplate(httpservletresponse response, string filename, string sheetname, class<t> clazz, boolean iscontainexample) { // 获取表头字段 list<excelclassfield> headfieldlist = getexcelclassfieldlist(clazz); // 获取表头数据和示例数据 list<list<object>> sheetdatalist = new arraylist<>(); list<object> headlist = new arraylist<>(); list<object> examplelist = new arraylist<>(); map<integer, list<string>> selectmap = new linkedhashmap<>(); for (int i = 0; i < headfieldlist.size(); i++) { excelclassfield each = headfieldlist.get(i); headlist.add(each.getname()); examplelist.add(each.getexample()); linkedhashmap<string, string> kvmap = each.getkvmap(); if (kvmap != null && kvmap.size() > 0) { selectmap.put(i, new arraylist<>(kvmap.values())); } } sheetdatalist.add(headlist); if (iscontainexample) { sheetdatalist.add(examplelist); } // 导出数据 export(response, filename, sheetname, sheetdatalist, selectmap); } private static <t> list<excelclassfield> getexcelclassfieldlist(class<t> clazz) { // 解析所有字段 field[] fields = clazz.getdeclaredfields(); boolean hasexportannotation = false; map<integer, list<excelclassfield>> map = new linkedhashmap<>(); list<integer> sortlist = new arraylist<>(); for (field field : fields) { excelclassfield cf = getexcelclassfield(field); if (cf.gethasannotation() == 1) { hasexportannotation = true; } int sort = cf.getsort(); if (map.containskey(sort)) { map.get(sort).add(cf); } else { list<excelclassfield> list = new arraylist<>(); list.add(cf); sortlist.add(sort); map.put(sort, list); } } collections.sort(sortlist); // 获取表头 list<excelclassfield> headfieldlist = new arraylist<>(); if (hasexportannotation) { for (integer sort : sortlist) { for (excelclassfield cf : map.get(sort)) { if (cf.gethasannotation() == 1) { headfieldlist.add(cf); } } } } else { headfieldlist.addall(map.get(0)); } return headfieldlist; } private static excelclassfield getexcelclassfield(field field) { excelclassfield cf = new excelclassfield(); string fieldname = field.getname(); cf.setfieldname(fieldname); excelexport annotation = field.getannotation(excelexport.class); // 无 excelexport 注解情况 if (annotation == null) { cf.sethasannotation(0); cf.setname(fieldname); cf.setsort(0); return cf; } // 有 excelexport 注解情况 cf.sethasannotation(1); cf.setname(annotation.value()); string example = getstring(annotation.example()); if (!example.isempty()) { if (isnumeric(example)) { cf.setexample(double.valueof(example)); } else { cf.setexample(example); } } else { cf.setexample(""); } cf.setsort(annotation.sort()); // 解析映射 string kv = getstring(annotation.kv()); cf.setkvmap(getkvmap(kv)); return cf; } private static linkedhashmap<string, string> getkvmap(string kv) { linkedhashmap<string, string> kvmap = new linkedhashmap<>(); if (kv.isempty()) { return kvmap; } string[] kvs = kv.split(";"); if (kvs.length == 0) { return kvmap; } for (string each : kvs) { string[] eachkv = getstring(each).split("-"); if (eachkv.length != 2) { continue; } string k = eachkv[0]; string v = eachkv[1]; if (k.isempty() || v.isempty()) { continue; } kvmap.put(k, v); } return kvmap; } /** * 导出表格到本地 * * @param file 本地文件对象 * @param sheetdata 导出数据 */ public static void exportfile(file file, list<list<object>> sheetdata) { if (file == null) { system.out.println("文件创建失败"); return; } if (sheetdata == null) { sheetdata = new arraylist<>(); } export(null, file, file.getname(), file.getname(), sheetdata, null); } /** * 导出表格到本地 * * @param <t> 导出数据类似,和k类型保持一致 * @param filepath 文件父路径(如:d:/doc/excel/) * @param filename 文件名称(不带尾缀,如:学生表) * @param list 导出数据 * @throws ioexception io异常 */ public static <t> file exportfile(string filepath, string filename, list<t> list) throws ioexception { file file = getfile(filepath, filename); list<list<object>> sheetdata = getsheetdata(list); exportfile(file, sheetdata); return file; } /** * 获取文件 * * @param filepath filepath 文件父路径(如:d:/doc/excel/) * @param filename 文件名称(不带尾缀,如:用户表) * @return 本地file文件对象 */ private static file getfile(string filepath, string filename) throws ioexception { string dirpath = getstring(filepath); string filefullpath; if (dirpath.isempty()) { filefullpath = filename; } else { // 判定文件夹是否存在,如果不存在,则级联创建 file dirfile = new file(dirpath); if (!dirfile.exists()) { dirfile.mkdirs(); } // 获取文件夹全名 if (dirpath.endswith(string.valueof(lean_line))) { filefullpath = dirpath + filename + xlsx; } else { filefullpath = dirpath + lean_line + filename + xlsx; } } system.out.println(filefullpath); file file = new file(filefullpath); if (!file.exists()) { file.createnewfile(); } return file; } private static <t> list<list<object>> getsheetdata(list<t> list) { // 获取表头字段 list<excelclassfield> excelclassfieldlist = getexcelclassfieldlist(list.get(0).getclass()); list<string> headfieldlist = new arraylist<>(); list<object> headlist = new arraylist<>(); map<string, excelclassfield> headfieldmap = new hashmap<>(); for (excelclassfield each : excelclassfieldlist) { string fieldname = each.getfieldname(); headfieldlist.add(fieldname); headfieldmap.put(fieldname, each); headlist.add(each.getname()); } // 添加表头名称 list<list<object>> sheetdatalist = new arraylist<>(); sheetdatalist.add(headlist); // 获取表数据 for (t t : list) { map<string, object> fielddatamap = getfielddatamap(t); set<string> fielddatakeys = fielddatamap.keyset(); list<object> rowlist = new arraylist<>(); for (string headfield : headfieldlist) { if (!fielddatakeys.contains(headfield)) { continue; } object data = fielddatamap.get(headfield); if (data == null) { rowlist.add(""); continue; } excelclassfield cf = headfieldmap.get(headfield); // 判断是否有映射关系 linkedhashmap<string, string> kvmap = cf.getkvmap(); if (kvmap == null || kvmap.isempty()) { rowlist.add(data); continue; } string val = kvmap.get(data.tostring()); if (isnumeric(val)) { rowlist.add(double.valueof(val)); } else { rowlist.add(val); } } sheetdatalist.add(rowlist); } return sheetdatalist; } private static <t> map<string, object> getfielddatamap(t t) { map<string, object> map = new hashmap<>(); field[] fields = t.getclass().getdeclaredfields(); try { for (field field : fields) { string fieldname = field.getname(); field.setaccessible(true); object object = field.get(t); map.put(fieldname, object); } } catch (illegalargumentexception | illegalaccessexception e) { e.printstacktrace(); } return map; } public static void exportempty(httpservletresponse response, string filename) { list<list<object>> sheetdatalist = new arraylist<>(); list<object> headlist = new arraylist<>(); headlist.add("导出无数据"); sheetdatalist.add(headlist); export(response, filename, sheetdatalist); } public static void export(httpservletresponse response, string filename, list<list<object>> sheetdatalist) { export(response, filename, filename, sheetdatalist, null); } public static void export(httpservletresponse response, string filename, string sheetname, list<list<object>> sheetdatalist) { export(response, filename, sheetname, sheetdatalist, null); } public static void export(httpservletresponse response, string filename, string sheetname, list<list<object>> sheetdatalist, map<integer, list<string>> selectmap) { export(response, null, filename, sheetname, sheetdatalist, selectmap); } public static <t, k> void export(httpservletresponse response, string filename, list<t> list, class<k> template) { // list 是否为空 boolean lisisempty = list == null || list.isempty(); // 如果模板数据为空,且导入的数据为空,则导出空文件 if (template == null && lisisempty) { exportempty(response, filename); return; } // 如果 list 数据,则导出模板数据 if (lisisempty) { exporttemplate(response, filename, template); return; } // 导出数据 list<list<object>> sheetdatalist = getsheetdata(list); export(response, filename, sheetdatalist); } public static void export(httpservletresponse response, string filename, list<list<object>> sheetdatalist, map<integer, list<string>> selectmap) { export(response, filename, filename, sheetdatalist, selectmap); } private static void export(httpservletresponse response, file file, string filename, string sheetname, list<list<object>> sheetdatalist, map<integer, list<string>> selectmap) { // 整个 excel 表格 book 对象 sxssfworkbook book = new sxssfworkbook(); // 每个 sheet 页 sheet sheet = book.createsheet(sheetname); drawing<?> patriarch = sheet.createdrawingpatriarch(); // 设置表头背景色(灰色) cellstyle headstyle = book.createcellstyle(); headstyle.setfillforegroundcolor(indexedcolors.grey_80_percent.index); headstyle.setfillpattern(fillpatterntype.solid_foreground); headstyle.setalignment(horizontalalignment.center); headstyle.setfillforegroundcolor(indexedcolors.grey_25_percent.index); // 设置表身背景色(默认色) cellstyle rowstyle = book.createcellstyle(); rowstyle.setalignment(horizontalalignment.center); rowstyle.setverticalalignment(verticalalignment.center); // 设置表格列宽度(默认为15个字节) sheet.setdefaultcolumnwidth(15); // 创建合并算法数组 int rowlength = sheetdatalist.size(); int columnlength = sheetdatalist.get(0).size(); int[][] mergearray = new int[rowlength][columnlength]; for (int i = 0; i < sheetdatalist.size(); i++) { // 每个 sheet 页中的行数据 row row = sheet.createrow(i); list<object> rowlist = sheetdatalist.get(i); for (int j = 0; j < rowlist.size(); j++) { // 每个行数据中的单元格数据 object o = rowlist.get(j); int v = 0; if (o instanceof url) { // 如果要导出图片的话, 链接需要传递 url 对象 setcellpicture(book, row, patriarch, i, j, (url) o); } else { cell cell = row.createcell(j); if (i == 0) { // 第一行为表头行,采用灰色底背景 v = setcellvalue(cell, o, headstyle); } else { // 其他行为数据行,默认白底色 v = setcellvalue(cell, o, rowstyle); } } mergearray[i][j] = v; } } // 合并单元格 mergecells(sheet, mergearray); // 设置下拉列表 setselect(sheet, selectmap); // 写数据 if (response != null) { // 前端导出 try { write(response, book, filename); } catch (ioexception e) { e.printstacktrace(); } } else { // 本地导出 fileoutputstream fos; try { fos = new fileoutputstream(file); bytearrayoutputstream ops = new bytearrayoutputstream(); book.write(ops); fos.write(ops.tobytearray()); fos.close(); } catch (exception e) { e.printstacktrace(); } } } /** * 合并当前sheet页的单元格 * * @param sheet 当前 sheet 页 * @param mergearray 合并单元格算法 */ private static void mergecells(sheet sheet, int[][] mergearray) { // 横向合并 for (int x = 0; x < mergearray.length; x++) { int[] arr = mergearray[x]; boolean merge = false; int y1 = 0; int y2 = 0; for (int y = 0; y < arr.length; y++) { int value = arr[y]; if (value == cell_column_merge) { if (!merge) { y1 = y; } y2 = y; merge = true; } else { merge = false; if (y1 > 0) { sheet.addmergedregion(new cellrangeaddress(x, x, (y1 - 1), y2)); } y1 = 0; y2 = 0; } } if (y1 > 0) { sheet.addmergedregion(new cellrangeaddress(x, x, (y1 - 1), y2)); } } // 纵向合并 int xlen = mergearray.length; int ylen = mergearray[0].length; for (int y = 0; y < ylen; y++) { boolean merge = false; int x1 = 0; int x2 = 0; for (int x = 0; x < xlen; x++) { int value = mergearray[x][y]; if (value == cell_row_merge) { if (!merge) { x1 = x; } x2 = x; merge = true; } else { merge = false; if (x1 > 0) { sheet.addmergedregion(new cellrangeaddress((x1 - 1), x2, y, y)); } x1 = 0; x2 = 0; } } if (x1 > 0) { sheet.addmergedregion(new cellrangeaddress((x1 - 1), x2, y, y)); } } } private static void write(httpservletresponse response, sxssfworkbook book, string filename) throws ioexception { response.setcontenttype("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); response.setcharacterencoding("utf-8"); string name = new string(filename.getbytes("gbk"), "iso8859_1") + xlsx; response.addheader("content-disposition", "attachment;filename=" + name); servletoutputstream out = response.getoutputstream(); book.write(out); out.flush(); out.close(); } private static int setcellvalue(cell cell, object o, cellstyle style) { // 设置样式 cell.setcellstyle(style); // 数据为空时 if (o == null) { cell.setcelltype(celltype.string); cell.setcellvalue(""); return cell_other; } // 是否为字符串 if (o instanceof string) { string s = o.tostring(); if (isnumeric(s)) { cell.setcelltype(celltype.numeric); cell.setcellvalue(double.parsedouble(s)); return cell_other; } else { cell.setcelltype(celltype.string); cell.setcellvalue(s); } if (s.equals(row_merge)) { return cell_row_merge; } else if (s.equals(column_merge)) { return cell_column_merge; } else { return cell_other; } } // 是否为字符串 if (o instanceof integer || o instanceof long || o instanceof double || o instanceof float) { cell.setcelltype(celltype.numeric); cell.setcellvalue(double.parsedouble(o.tostring())); return cell_other; } // 是否为boolean if (o instanceof boolean) { cell.setcelltype(celltype.boolean); cell.setcellvalue((boolean) o); return cell_other; } // 如果是bigdecimal,则默认3位小数 if (o instanceof bigdecimal) { cell.setcelltype(celltype.numeric); cell.setcellvalue(((bigdecimal) o).setscale(3, roundingmode.half_up).doublevalue()); return cell_other; } // 如果是date数据,则显示格式化数据 if (o instanceof date) { cell.setcelltype(celltype.string); cell.setcellvalue(formatdate((date) o)); return cell_other; } // 如果是其他,则默认字符串类型 cell.setcelltype(celltype.string); cell.setcellvalue(o.tostring()); return cell_other; } private static void setcellpicture(sxssfworkbook wb, row sr, drawing<?> patriarch, int x, int y, url url) { // 设置图片宽高 sr.setheight((short) (img_width * img_height)); // (jdk1.7版本try中定义流可自动关闭) try (inputstream is = url.openstream(); bytearrayoutputstream outputstream = new bytearrayoutputstream()) { byte[] buff = new byte[bytes_default_length]; int rc; while ((rc = is.read(buff, 0, bytes_default_length)) > 0) { outputstream.write(buff, 0, rc); } // 设置图片位置 xssfclientanchor anchor = new xssfclientanchor(0, 0, 0, 0, y, x, y + 1, x + 1); // 设置这个,图片会自动填满单元格的长宽 anchor.setanchortype(anchortype.move_and_resize); patriarch.createpicture(anchor, wb.addpicture(outputstream.tobytearray(), hssfworkbook.picture_type_jpeg)); } catch (exception e) { e.printstacktrace(); } } private static string formatdate(date date) { if (date == null) { return ""; } simpledateformat format = new simpledateformat(date_format); return format.format(date); } private static void setselect(sheet sheet, map<integer, list<string>> selectmap) { if (selectmap == null || selectmap.isempty()) { return; } set<entry<integer, list<string>>> entryset = selectmap.entryset(); for (entry<integer, list<string>> entry : entryset) { int y = entry.getkey(); list<string> list = entry.getvalue(); if (list == null || list.isempty()) { continue; } string[] arr = new string[list.size()]; for (int i = 0; i < list.size(); i++) { arr[i] = list.get(i); } datavalidationhelper helper = sheet.getdatavalidationhelper(); cellrangeaddresslist addresslist = new cellrangeaddresslist(1, 65000, y, y); datavalidationconstraint dvc = helper.createexplicitlistconstraint(arr); datavalidation dv = helper.createvalidation(dvc, addresslist); if (dv instanceof hssfdatavalidation) { dv.setsuppressdropdownarrow(false); } else { dv.setsuppressdropdownarrow(true); dv.setshowerrorbox(true); } sheet.addvalidationdata(dv); } } private static boolean isnumeric(string str) { if ("0.0".equals(str)) { return true; } for (int i = str.length(); --i >= 0; ) { if (!character.isdigit(str.charat(i))) { return false; } } return true; } private static string getstring(string s) { if (s == null) { return ""; } if (s.isempty()) { return s; } return s.trim(); } }
excelimport
package com.zyq.util.excel; import java.lang.annotation.elementtype; import java.lang.annotation.retention; import java.lang.annotation.retentionpolicy; import java.lang.annotation.target; /** * @author sunnyzyq * @date 2021/12/17 */ @target(elementtype.field) @retention(retentionpolicy.runtime) public @interface excelimport { /** 字段名称 */ string value(); /** 导出映射,格式如:0-未知;1-男;2-女 */ string kv() default ""; /** 是否为必填字段(默认为非必填) */ boolean required() default false; /** 最大长度(默认255) */ int maxlength() default 255; /** 导入唯一性验证(多个字段则取联合验证) */ boolean unique() default false; }
excelexport
package com.zyq.util.excel; import java.lang.annotation.elementtype; import java.lang.annotation.retention; import java.lang.annotation.retentionpolicy; import java.lang.annotation.target; /** * @author sunnyzyq * @date 2021/12/17 */ @target(elementtype.field) @retention(retentionpolicy.runtime) public @interface excelexport { /** 字段名称 */ string value(); /** 导出排序先后: 数字越小越靠前(默认按java类字段顺序导出) */ int sort() default 0; /** 导出映射,格式如:0-未知;1-男;2-女 */ string kv() default ""; /** 导出模板示例值(有值的话,直接取该值,不做映射) */ string example() default ""; }
excelclassfield
package com.zyq.util.excel; import java.util.linkedhashmap; /** * @author sunnyzyq * @date 2021/12/17 */ public class excelclassfield { /** 字段名称 */ private string fieldname; /** 表头名称 */ private string name; /** 映射关系 */ private linkedhashmap<string, string> kvmap; /** 示例值 */ private object example; /** 排序 */ private int sort; /** 是否为注解字段:0-否,1-是 */ private int hasannotation; public string getfieldname() { return fieldname; } public void setfieldname(string fieldname) { this.fieldname = fieldname; } public string getname() { return name; } public void setname(string name) { this.name = name; } public linkedhashmap<string, string> getkvmap() { return kvmap; } public void setkvmap(linkedhashmap<string, string> kvmap) { this.kvmap = kvmap; } public object getexample() { return example; } public void setexample(object example) { this.example = example; } public int getsort() { return sort; } public void setsort(int sort) { this.sort = sort; } public int gethasannotation() { return hasannotation; } public void sethasannotation(int hasannotation) { this.hasannotation = hasannotation; } }
到此这篇关于java实现excel导入导出操作详解的文章就介绍到这了,更多相关java excel导入导出内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读
-
利用phpexcel把excel导入数据库和数据库导出excel实现
-
php实现的操作excel类详解
-
java实现CSV文件导入与导出功能
-
C#实现几十万级数据导出Excel及Excel各种操作实例
-
Java实现Excel导入数据库,数据库中的数据导入到Excel
-
Laravel Excel 实现 Excel-CSV 文件导入导出功能
-
java实现导出文字+数据的excel文件并返回文件流
-
结合bootstrap fileinput插件和Bootstrap-table表格插件,实现文件上传、预览、提交的导入Excel数据操作流程
-
BootStrap Fileinput插件和Bootstrap table表格插件相结合实现文件上传、预览、提交的导入Excel数据操作步骤
-
Oracle 使用TOAD实现导入导出Excel数据