30.1 导入依赖
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version>2.2.6</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.12</version>
</dependency>
30.2 创建一个类
在类上加注解,@ExcelProperty,注解中value属性是列名,index属性是第几列。文章来源:https://www.toymoban.com/news/detail-628474.html
package jiang.com;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Student {
@ExcelProperty(value = "姓名",index = 0)
private String name;
@ExcelProperty(value = "年龄",index = 1)
private Integer age;
}
30.3 创建数据,使用EasyExcel的write方法完成excel创建
首先,需要创建一个泛型为Student的集合,存放多个Student对象,一个对象相当于excel表格的其中一行。然后,调用EasyExcel的write方法,需要填写excel生成的路径(需要写到生成的excel文件名)以及Student类的反射。接着,使用sheet方法,传入表格的sheet名称。最后,使用doWrite方法,把集合写到excel中。文章来源地址https://www.toymoban.com/news/detail-628474.html
package jiang.com;
import com.alibaba.excel.EasyExcel;
import java.util.Arrays;
import java.util.List;
public class Demo1 {
public static void main(String[] args) {
// excel数据
List<Student> list = Arrays.asList(
new Student("张三1",30),
new Student("张三2",31),
new Student("张三3",32),
new Student("张三4",34),
new Student("张三5",35)
);
EasyExcel.write("2.xlsx",Student.class).sheet("学生").doWrite(list);
}
}
到了这里,关于30 使用easyExcel依赖生成Excel的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!