SpringBoot2.X + EasyExcel(76)
官网: EasyExcel 其他简单Excel框架: ExcelUtil 1、pom依赖 <dependency> <groupId> com.alibaba </groupId> <artifactId> easyexcel </artifactId> <version> 2.2.6 </version> </dependency> 2、实体类 @Data @NoArgsConstructor @AllArgsConstructor public class User { @ExcelProperty ( value = "姓名" ) private String userName ; @NumberFormat ( "#.##%" ) @ExcelProperty ( value = "体脂率" ) private double fat ; @ExcelProperty ( value = "编写日期" ) private String birthday ; } 3、导出数据 @GetMapping ( value = "/write" ) public String write (){ String url = "/Users/mac/Desktop/76521.xlsx" ; List<User> list = Arrays. asList ( new User( "刘飞"