最近在做一个基于React+antd前端框架的Excel导出功能,我主要在后端做了处理,这个功能完成后,便总结成一篇技术分享文章,感兴趣的小伙伴可以参考该分享来做导出excle表格功能,以下步骤同样适用于vue框架,或者JSP页面的实现。
在做这类导出文件的功能,其实,在后端进行处理,会更容易些,虽然前端也可以进行处理,但还是建议后端来做,因为很多导出工具类基本都是很好用。
根据以下步骤,可以很容易就实现导出Excel表格数据的功能。
1.导出图标
按钮代码:
2.按钮this.excelToPort的方法:
1 excelPort = () => {
2 location.href="/test/export.do"
3 }
3.建立Excel的Entity类(以下类可以直接复制用,无需做修改):
Excel Bean
1 package com.test;
2
3 import lombok.Getter;
4 import lombok.Setter;
5 import org.apache.poi.xssf.usermodel.XSSFCellStyle;
6
7 @Getter
8 @Setter
9 public class ExcelBean {
10 private String headTextName; //列头(标题)名
11 private String propertyName; //对应字段名
12 private Integer cols; //合并单元格数
13 private XSSFCellStyle cellStyle;
14
15 public ExcelBean(String headTextName, String propertyName, Integer cols) {
16 super();
17 this.headTextName = headTextName;
18 this.propertyName = propertyName;
19 this.cols = cols;
20 }
21
22 }
映射到数据库里的User Bean
1 package com.bqs.data.dcm.bean;
2
3 import lombok.Getter;
4 import lombok.Setter;
5
6 @Getter
7 @Setter
8 public class User {
9 private String id;
10 private String name;
11 private Integer age;
12 private String sex;
13
14 }
4.建立Excel的工具类(无需修改可直接复制用)
1 package com.test;
2
3 import java.beans.IntrospectionException;
4 import java.lang.reflect.InvocationTargetException;
5 import java.text.SimpleDateFormat;
6 import java.util.ArrayList;
7 import java.util.Date;
8 import java.util.List;
9 import java.util.Map;
10
11 import com.test.ExcelBean;
12 import org.apache.poi.ss.util.CellRangeAddress;
13 import org.apache.poi.xssf.usermodel.XSSFCell;
14 import org.apache.poi.xssf.usermodel.XSSFCellStyle;
15 import org.apache.poi.xssf.usermodel.XSSFFont;
16 import org.apache.poi.xssf.usermodel.XSSFRow;
17 import org.apache.poi.xssf.usermodel.XSSFSheet;
18 import org.apache.poi.xssf.usermodel.XSSFWorkbook;
19
20 /**
21 * @author 朱季谦
22 * @version
23 */
24 public class ExportUtil {
25
26 /**
27 * 导出Excel表
28 * @param clazz 数据源model类型
29 * @param objs excel标题以及对应的model字段
30 * @param map 标题行数以及cell字体样式
31 * @param sheetName 工作簿名称
32 * @return
33 *
34 */
35 public static XSSFWorkbook createExcelFile(
36 Class> clazz,
37 List
5.导出Excel的controller类
1 /**
2 * 导出excle表格
3 */
4 @RequestMapping(value = "/export")
5 public void exportTotal( HttpServletResponse response ) throws Exception{
6 response.reset(); //清除buffer缓存
7 //Map map=new HashMap();
8 // 指定下载的文件名
9 response.setContentType("application/vnd.ms-excel;charset=UTF-8");
10 String excleName="统计表格"+".xlsx";
11 response.setHeader("Content-Disposition","attachment;filename="+new String(excleName.getBytes(),"iso-8859-1"));
12 //导出Excel对象
13 XSSFWorkbook workbook = sysExportExcelInfo.exportExcel();
14 OutputStream output;
15 try {
16 output = response.getOutputStream();
17 BufferedOutputStream bufferedOutput = new BufferedOutputStream(output);
18 bufferedOutput.flush();
19 workbook.write(bufferedOutput);
20 bufferedOutput.close();
21
22 } catch (IOException e) {
23 e.printStackTrace();
24 }
25 }
6.导出Excel的service类
1 public XSSFWorkbook exportExcel() throws Exception{
2 //获取dao导出的list集合
3 List list=userService.exportUser();
4
5 List> listMap=ListBeanToListMap(list);
6
7 List excel = new ArrayList<>();
8 Map> map = new LinkedHashMap<>();
9 //设置标题栏
10 excel.add(new ExcelBean("序号","id",0));
11 excel.add(new ExcelBean("名字","name",0));
12 excel.add(new ExcelBean("年龄","age",0));
13
14 map.put(0,excel);
15 String sheetName = "统计表格";
16 //调用ExcelUtil方法
17 XSSFWorkbook xssfWorkbook = ExportUtil.createExcelFile(DcmDemand.class, listMap, map, sheetName);
18 System.out.println(xssfWorkbook);
19 return xssfWorkbook;
20 }
注意:整块导出Excel代码,主要需要改动只是这一行代码:List list=userService.exportUser(),这是调用dao层获取以列表list获得数据的查询。
下面三行代码里的“序号”,“名字”,“年龄”根据User属性来定义的,它将作为表格表头呈现在导出的表格里。这里的User表映射到数据库表t_user表,你需要导出User里哪些字段的数据,就以这样格式excel.add(new ExcelBean("序号","id",0))加到下面代码里:
1 excel.add(new ExcelBean("序号","id",0));
2 excel.add(new ExcelBean("名字","name",0));
3 excel.add(new ExcelBean("年龄","age",0));
其中,以上代码需要把list转换成List>形式,转换方法如下,因为创建表格时需要这样List>格式类型数据:
1 public static List> ListBeanToListMap(List list) throws NoSuchMethodException,
2 SecurityException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
3 List> listmap = new ArrayList>();
4
5 for (Object ob : list) {
6
7 listmap.add(beanToMap(ob));
8 }
9 return listmap;
10 }
按照以上代码步骤,可以实现在React+antd前端实现导出这样的Excel表格功能:
若有什么不明白的,可以评论留言,我会尽量解答。