SpringBoot整合POI导出通用Excel的方法示例
程序员文章站
2022-03-11 23:21:25
一、准备工作1、pom依赖在pom.xml中加入poi的依赖 org.apache.poi
一、准备工作
1、pom依赖
在pom.xml中加入poi的依赖
<dependency> <groupid>org.apache.poi</groupid> <artifactid>poi-ooxml</artifactid> <version>3.11-beta1</version> </dependency> <dependency> <groupid>org.apache.poi</groupid> <artifactid>poi-ooxml-schemas</artifactid> <version>3.11-beta1</version> </dependency>
2、自定义注解
自定义注解,用于定义excel单元格的相关信息,用在需要导出的类上。
大家可以根据自己的实际需求来定义更多的内容。
@retention(retentionpolicy.runtime) public @interface excelresources { int order() default 9999;//定义字段在excel的单元格列坐标位置 string title() default "";//定义列坐标对应的标题 int cloumn() default 100;//定义列宽 string pattern() default "";//定义日期显示格式 }
3、定义需要导出的实体
举例说明@excelresources 的应用场景,我们创建一个demomodel,包含姓名、年龄、性别、日期。
后边的excel导出例子也采用这个实体类来举例。
@data public class exceldemomodel { @excelresources(order=0,title = "姓名",cloumn = 10) private string name; @excelresources(order=1,title = "年龄",cloumn = 10) private integer age; @excelresources(order=2,title = "创建时间",cloumn = 24,pattern = "yyyy-mm-dd hh:mm:ss") private date createtime; @excelresources(order=3,title = "性别",cloumn = 10) private sextype sex;//枚举 }
4、定义导出辅助类
用于存放导出的excel对应标题和列宽
@data @noargsconstructor @allargsconstructor public class titleandcloumn { private string title;//标题 private int cloumn;//列宽 }
二、具体的导出方法
1、导出主要方法
@service public class excelservice { private static float title_row_height=30;//标题行高 private static float data_row_height=25;//数据行高 public void exportexcel(httpservletrequest request, httpservletresponse response, string filename ,list<?> exceldatas,class<?> clz ) { try { hssfworkbook resultwb=new hssfworkbook(); hssfsheet sheet=resultwb.createsheet();//创建sheet //根据类类型信息获取导出的excel对应的标题和列宽 key-列号,value-标题和列宽 hashmap<integer, titleandcloumn> ordertitleandcloumnmap=gettitleandcloumnmap(clz); //设置列宽 ordertitleandcloumnmap.foreach((k,v) -> { sheet.setcolumnwidth(k, v.getcloumn()*256); }); hssfrow row0=sheet.createrow(0); //设置标题行高 row0.setheightinpoints(title_row_height); //创建标题单元格格式 hssfcellstyle titlecellstyle=getcellstyle(resultwb,11,true,hssfcolor.black.index); //填充标题行内容 ordertitleandcloumnmap.foreach((k,v) -> { hssfcell row0cell=row0.createcell(k); row0cell.setcellvalue(v.gettitle()); row0cell.setcellstyle(titlecellstyle); }); //创建正文单元格格式 hssfcellstyle datastyle = getcellstyle(resultwb,11,false,hssfcolor.black.index); //将正文转换为excel数据 int rownum=1; for(object data:exceldatas){ hssfrow row=sheet.createrow(rownum++); row.setheightinpoints(data_row_height); //获取对象值 key-列号 value-string值 hashmap<integer,string> ordervaluemap=getvaluemap(data); ordervaluemap.foreach((k,v) ->{ hssfcell cell=row.createcell(k); cell.setcellvalue(v); cell.setcellstyle(datastyle); } ); } string downfilename=filename+".xls"; response.setcontenttype("application/vnd.ms-excel; charset=utf-8");// application/x-download response.setheader("content-disposition", "attachment; " +encodefilename(request, downfilename)); outputstream outputstream = response.getoutputstream(); resultwb.write(outputstream); outputstream.flush(); outputstream.close(); resultwb.close(); }catch (exception e1) { e1.printstacktrace(); } } }
2、通过反射获取excel标题和列宽
/** * 获取类的属性对应单元格标题和列宽 * @param * @return */ private static hashmap<integer, titleandcloumn> gettitleandcloumnmap(class<?> clz) { hashmap<integer, titleandcloumn> ordertitleandcloumnmap=new hashmap<>(); field[] fs = clz.getdeclaredfields(); for(field f:fs) { f.setaccessible(true); if(f.isannotationpresent(excelresources.class)) { integer order=f.getannotation(excelresources.class).order(); string title=f.getannotation(excelresources.class).title(); int cloumn=f.getannotation(excelresources.class).cloumn(); titleandcloumn titleandcloumn=new titleandcloumn(title,cloumn); ordertitleandcloumnmap.put(order,titleandcloumn); } } return ordertitleandcloumnmap; }
3、创建cellstyle
通过传入参数定义简单地cellstyle
public hssfcellstyle getcellstyle(hssfworkbook workbook,int fontsize,boolean isboleaweight,short color){ hssfcellstyle style = workbook.createcellstyle(); style.setalignment(hssfcellstyle.align_center);//水平居中 style.setverticalalignment(hssfcellstyle.vertical_center);//垂直居中 style.setborderbottom(hssfcellstyle.border_thin); style.setborderleft(hssfcellstyle.border_thin); style.setborderright(hssfcellstyle.border_thin); style.setbordertop(hssfcellstyle.border_thin); hssffont font = workbook.createfont(); font.setfontheightinpoints((short) fontsize);//字号 font.setcolor(color);//颜色 font.setfontname("宋体");//字体 if(isboleaweight){ font.setboldweight(hssffont.boldweight_bold); //字体加粗 } style.setwraptext(true); style.setfont(font); return style; }
4、通过反射获取对象信息并处理成string字符串
我这里只涉及到基本数据类型和date以及枚举的值获取和转换,小伙伴可以根据自己的实际情况进行修改。
/** * 获取对象的属性对应单元格坐标和值的键值对 * @param obj * @return */ private static hashmap<integer, string> getvaluemap(object obj) throws illegalaccessexception { hashmap<integer, string> result=new hashmap<>(); class<?> clz=obj.getclass(); field[] fs = clz.getdeclaredfields(); for(field f:fs) { f.setaccessible(true); if(f.isannotationpresent(excelresources.class)) { integer order=f.getannotation(excelresources.class).order(); string value=""; object valueobj=f.get(obj); if(valueobj!=null) { //日期格式进行特殊处理 if(f.gettype()==date.class){ string pattern=f.getannotation(excelresources.class).pattern(); if(stringutils.isempty(pattern)){ pattern="yyyy-mm-dd hh:mm:ss"; } simpledateformat sdf=new simpledateformat(pattern); value=sdf.format(valueobj); }else{ value=valueobj.tostring();//其他格式调用tostring方法,这里枚举就需要定义自己的tostring方法 } } result.put(order, value); } } return result; }
5、枚举的定义
如果有用到枚举存储在数据库的小伙伴,可以自定义枚举的tostring方法来实现excel导出时候相应的内容
public enum sextype { male("男"), female("女"), ; private string typename; sextype(string typename) { this.typename = typename; } @override public string tostring() { return typename; } }
6、encodefilename
/** * 根据不同的浏览器生成不同类型中文文件名编码 * * @param request * @param filename * @return * @throws unsupportedencodingexception */ public static string encodefilename(httpservletrequest request, string filename) throws unsupportedencodingexception { string new_filename = urlencoder.encode(filename, "utf8").replaceall("\\+", "%20"); string agent = request.getheader("user-agent").tolowercase(); if (null != agent && -1 != agent.indexof("msie")) { /** * ie浏览器,只能采用urlencoder编码 */ return "filename=\"" + new_filename +"\""; }else if (null != agent && -1 != agent.indexof("applewebkit")){ /** * chrome浏览器,只能采用iso编码的中文输出 */ return "filename=\"" + new string(filename.getbytes("utf-8"),"iso8859-1") +"\""; } else if (null != agent && -1 != agent.indexof("opera")){ /** * opera浏览器只可以使用filename*的中文输出 * rfc2231规定的标准 */ return "filename*=" + new_filename ; }else if (null != agent && -1 != agent.indexof("safari")){ /** * safani浏览器,只能采用iso编码的中文输出 */ return "filename=\"" + new string(filename.getbytes("utf-8"),"iso8859-1") +"\""; }else if (null != agent && -1 != agent.indexof("firefox")) { /** * firfox浏览器,可以使用filename*的中文输出 * rfc2231规定的标准 */ return "filename*=" + new_filename ; } else { return "filename=\"" + new_filename +"\""; } }
三、方法调用案例
1、方法调用
public void exportexceldemo(httpservletrequest request, httpservletresponse response) { //一系列查询处理 list<exceldemomodel> demolist=new arraylist<>(); excelservice.exportexcel(request,response,"人员信息demo",demolist,exceldemomodel.class); }
2、导出效果
到此这篇关于springboot整合poi导出通用excel的方法示例的文章就介绍到这了,更多相关springboot整合poi导出excel内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读