使用excel.EasyExcel实现导出有自界说样式模板的excel数据文件,粘贴即用! ...

打印 上一主题 下一主题

主题 969|帖子 969|积分 2907

客户要求导出的excel文件是有悦目格式的,当然本文举例模板文件比较简单,内容丰富的模板可以自行设置,话不多说,第一步设置一个"悦目"的excel文件模板

上面要留意的地方是{.变量名} ,这里的变量名对应的就是导出数据对象内里的变量名,一定要有"."
对象属性,不写"."就是填充单个属性,写了就是填充列表数据
先看代码目录结构

application.yml设置文件:
  1. server:
  2.   port: 9009
复制代码
springboot启动类代码:
  1. import org.springframework.boot.SpringApplication;
  2. import org.springframework.boot.autoconfigure.SpringBootApplication;
  3. @SpringBootApplication
  4. public class BootstrapApp {
  5.     public static void main(String[] args) {
  6.         SpringApplication.run(BootstrapApp.class, args);
  7.     }
  8. }
复制代码


数据对象代码:
  1. import com.alibaba.excel.annotation.ExcelProperty;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. @Getter
  5. @Setter
  6. public class User {
  7.     private int id;
  8.     @ExcelProperty(value = "姓名")
  9.     private String name;
  10.     @ExcelProperty(value = "年龄")
  11.     private String age;
  12.     @ExcelProperty(value = "兴趣爱好")
  13.     private String love;
  14.     @ExcelProperty(value = "备注")
  15.     private String remark;
  16. }
复制代码
然后controller代码:
 
  1. import com.operation.excel.service.DoExcelService;
  2. import lombok.extern.slf4j.Slf4j;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.web.bind.annotation.GetMapping;
  5. import org.springframework.web.bind.annotation.RequestMapping;
  6. import org.springframework.web.bind.annotation.RestController;
  7. import javax.servlet.http.HttpServletResponse;
  8. @Slf4j
  9. @RestController
  10. @RequestMapping("/api")
  11. public class ExcelController {
  12.     @Autowired
  13.     private DoExcelService doExcelService;
  14.     @GetMapping("/export")
  15.     public void export(HttpServletResponse response) throws Exception {
  16.         log.info("开始导出自定义样式excel");
  17.         doExcelService.export(response);
  18.     }
  19. }
复制代码
然后是service代码
  1. import javax.servlet.http.HttpServletResponse;
  2. public interface DoExcelService {
  3.     void export(HttpServletResponse response) throws Exception;
  4. }
复制代码
service对应实现类代码:
  1. import com.alibaba.excel.EasyExcel;
  2. import com.alibaba.excel.write.metadata.style.WriteCellStyle;
  3. import com.alibaba.excel.write.metadata.style.WriteFont;
  4. import com.alibaba.excel.write.style.HorizontalCellStyleStrategy;
  5. import com.operation.excel.dto.User;
  6. import com.operation.excel.service.DoExcelService;
  7. import lombok.extern.slf4j.Slf4j;
  8. import org.springframework.core.io.ClassPathResource;
  9. import org.springframework.stereotype.Service;
  10. import javax.servlet.http.HttpServletResponse;
  11. import java.io.InputStream;
  12. import java.net.URLEncoder;
  13. import java.nio.charset.StandardCharsets;
  14. import java.time.LocalDateTime;
  15. import java.time.format.DateTimeFormatter;
  16. import java.util.ArrayList;
  17. import java.util.List;
  18. import java.util.UUID;
  19. @Service
  20. @Slf4j
  21. public class DoExcelServiceImpl implements DoExcelService {
  22.     @Override
  23.     public void export(HttpServletResponse response) throws Exception {
  24.         // 1:设置响应参数
  25.         setResponseHeader(response, "user_");
  26.         // 2:获取待导出的数据合集
  27.         List<User> productCoreParamList = getData();
  28.         // 3:获取模板流
  29.         InputStream templateStream = new ClassPathResource("template/export-user.xlsx").getInputStream();
  30.         // 4:写入response导出excel
  31.         EasyExcel.write(response.getOutputStream()).registerWriteHandler(setStyle()).withTemplate(templateStream).sheet().doFill(productCoreParamList);
  32.     }
  33.     //这里设置响应头的部分参数
  34.     private void setResponseHeader(HttpServletResponse response, String fileName) throws Exception {
  35.         try {
  36.             // 修正文件扩展名为xlsx以匹配实际格式
  37.             String fileNameStr = fileName + LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMddHHmmss")) + ".xlsx";
  38.             String encodedFileName = URLEncoder.encode(fileNameStr, StandardCharsets.UTF_8.toString());
  39.             response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
  40.             response.setCharacterEncoding("UTF-8");
  41.             response.setHeader("Content-Disposition", "attachment;filename=" + encodedFileName);
  42.         } catch (Exception e) {
  43.             log.error("set response header error", e);
  44.             throw new Exception("设置响应头失败: " + e.getMessage());
  45.         }
  46.     }
  47.    
  48.     // 这个方法是模拟需要导出的数据(实际是从数据库获取)
  49.     private List<User> getData() {
  50.         List<User> students = new ArrayList<>();
  51.         for (int i = 0; i < 10; i++) {
  52.             User student = new User();
  53.             student.setId(i);
  54.             student.setAge("A" + i);
  55.             student.setName("B" + i);
  56.             student.setLove(UUID.randomUUID().toString());
  57.             student.setRemark(UUID.randomUUID().toString());
  58.             students.add(student);
  59.         }
  60.         return students;
  61.     }
  62.     //这这个方法是设置填充的数据内容字体样式,也可以不设置
  63.     private HorizontalCellStyleStrategy setStyle(){
  64.         // 定义样式:自动换行
  65.         WriteCellStyle contentWriteCellStyle = new WriteCellStyle();
  66.         contentWriteCellStyle.setWrapped(true); // 关键:开启自动换行
  67.         WriteFont writeFont = new WriteFont();
  68.         writeFont.setFontName("Microsoft YaHei"); // 字体
  69.         writeFont.setFontHeightInPoints((short) 12);// 字体大小
  70.         contentWriteCellStyle.setWriteFont(writeFont);
  71.         // 注册样式策略(全局生效)
  72.         HorizontalCellStyleStrategy styleStrategy = new HorizontalCellStyleStrategy(
  73.                 null, // 头样式(默认)
  74.                 contentWriteCellStyle // 内容样式(自动换行)
  75.         );
  76.         return styleStrategy;
  77.     }
复制代码
postman验证效果:
 


response直接展示会乱码,所以选择save response 然后选择保存为文件也就是 save file
查看保存的文件:
 

总结:就是先预备一个悦目标模板(设置变量),然后读模版流,然后向模板流中的sheet工作表填充数据,最后写入response前端获取

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

飞不高

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表