一、使用hutool导出excel
1.1 hutool介绍
hutool功能很强大,http请求到json处理、excel的导入导出、定时任务、IO、缓存、数据库操作等都提供了简单而方便的api供我们使用,好处是再也不用担心自己去整理常用的工具类了,同时也支持按需引入【但一般项目都是直接一如hutool-all 导致项目引入很多不必要的工具类】。
从2014年首次发布第一版本到现在已经8年了,这款国产工具类确实收获了越来越多的关注,而且社区的热度是可以的,但是比起Apache或者谷歌提供的工具类,更新频率和可靠性也许稍差,但在我看来是可以考虑使用的。
1.2 编写代码导出excel【仅表头】
我们要的效果:
所需编写的代码:
@GetMapping("/exportTemplate")
public void exportTemplate(HttpServletResponse response) throws IOException {
String column1Name1 = "时间戳";
String column1Name2 = "设备名称";
List<String> headList = new ArrayList<>();
(column1Name1);
(column1Name2);
//在内存操作,写到浏览器
ExcelWriter writer= (true);
// 设置表头的宽度
(0, 20);
(1, 15);
(headList).write(());
//设置content—type
("application/;charset:utf-8");
//Content-disposition是MIME协议的扩展,MIME协议指示MIME用户代理如何显示附加的文件。
("Content-Disposition","attachment;filename="+("数据集导入模板","UTF-8")+".xlsx");
ServletOutputStream outputStream= ();
//将Writer刷新到OutPut
(outputStream,true);
();
();
}
1.3 编写代码导出excel【含内容】
我们要的效果:
所需编写的代码:
@GetMapping("/exportTemplate")
public void exportTemplate(HttpServletResponse response) throws IOException {
String column1Name1 = "时间戳";
String column1Name2 = "设备名称";
List<String> headList = new ArrayList<>();
(column1Name1);
(column1Name2);
//在内存操作,写到浏览器
ExcelWriter writer= (true);
// 设置表头的宽度
(0, 20);
("timestamp",column1Name1);
(1, 15);
("deviceName",column1Name2);
// 默认的,未添加alias的属性也会写出,如果想只写出加了别名的字段,可以调用此方法排除之
(true);
// 表格内容【相比上一节新内容】
List<CollectDataExcelVo> excelList = new ArrayList<>();
CollectDataExcelVo vo1 = new CollectDataExcelVo();
("A类设备");
((new Date()));
(vo1);
CollectDataExcelVo vo2 = new CollectDataExcelVo();
("B类设备");
((new Date()));
(vo2);
(headList).write(excelList);
//设置content—type
("application/;charset:utf-8");
//Content-disposition是MIME协议的扩展,MIME协议指示MIME用户代理如何显示附加的文件。
("Content-Disposition","attachment;filename="+("数据集导入模板","UTF-8")+".xlsx");
ServletOutputStream outputStream= ();
//将Writer刷新到OutPut
(outputStream,true);
();
();
}
@Data
public class CollectDataExcelVo {
/**
* 时间戳
*/
@ApiModelProperty(value = "时间戳")
private String timestamp;
/**
* 设备编码
*/
@ApiModelProperty(value = "设备名称")
private String deviceName;
}
1.4 编写代码导出excel【导出下拉列表】
我们要的效果:
所需编写的代码:
@GetMapping("/exportTemplate")
public void exportTemplate(HttpServletResponse response) throws IOException {
String column1Name1 = "时间戳";
String column1Name2 = "设备名称";
List<String> headList = new ArrayList<>();
(column1Name1);
(column1Name2);
//在内存操作,写到浏览器
ExcelWriter writer= (true);
// 设置表头的宽度
(0, 20);
("timestamp",column1Name1);
(1, 15);
("deviceName",column1Name2);
// 默认的,未添加alias的属性也会写出,如果想只写出加了别名的字段,可以调用此方法排除之
(true);
// 表格下拉框【相比上一节新内容】
(1, 1, new String[]{"1#进线","2#进线", "3#进线"});
(headList).write(());
//设置content—type
("application/;charset:utf-8");
//Content-disposition是MIME协议的扩展,MIME协议指示MIME用户代理如何显示附加的文件。
("Content-Disposition","attachment;filename="+("数据集导入模板","UTF-8")+".xlsx");
ServletOutputStream outputStream= ();
//将Writer刷新到OutPut
(outputStream,true);
();
();
}
二、使用easyexcel导出excel
2.1 easyexcel介绍
EasyExcel是阿里巴巴开源的一个excel处理框架,以使用简单、节省内存著称;能大大减少占用内存的主要原因是在解析Excel时没有将文件数据一次性全部加载到内存中,而是从磁盘上一行行读取数据,逐个解析。
2.2 编写代码导出excel
我们要的效果:
所需编写的代码:
pom引入依赖:
<dependency>
<groupId></groupId>
<artifactId>easyexcel</artifactId>
<version>3.0.5</version>
</dependency>
<dependency>
<groupId></groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.2</version>
</dependency>
java代码:
import ;
import ;
import ;
import ;
@Data
public class CollectDataExcelVo {
/**
* 时间戳
*/
@ExcelProperty(value = "时间戳", index = 0)
@ColumnWidth(value = 20)
@ApiModelProperty(value = "时间戳")
private String timestamp;
/**
* 设备名称
*/
@ExcelProperty(value = "设备名称", index = 1)
@ColumnWidth(value = 15)
@ApiModelProperty(value = "设备名称")
private String deviceName;
}
@GetMapping("/exportTemplate")
public void exportTemplate(HttpServletResponse response) throws IOException {
// 模拟数据库获取数据
List<CollectDataExcelVo> list = data();
(StandardCharsets.UTF_8.name());
("content-Type", "application/-excel");
("Content-Disposition",
"attachment;filename=" + ("template"+ (new Date(), "yyyy-MM-dd")+".xlsx", StandardCharsets.UTF_8.name()));
((), ).sheet().doWrite(list);
}
private List<CollectDataExcelVo> data() {
List<CollectDataExcelVo> list = ();
for (int i = 1; i <= 2; i++) {
CollectDataExcelVo data = new CollectDataExcelVo();
((new Date()));
("A类设备"+i);
(data);
}
return list;
}
三、从项目resources目录导出excel
3.1 将文件放入项目路径下
3.2 将文件导出
将文件从项目工程的 resources/file 目录下导出,所需代码如下:
import ;
@GetMapping("/exportTemplate")
public void exportTemplate(HttpServletResponse response) {
InputStream inputStream = null;
OutputStream outputStream = null;
try {
String fileName= ("template","UTF-8");
outputStream = ();
// 获取springboot resource 路径下的文件
inputStream = ().getResourceAsStream("/file/");
("application/-excel");
("Content-Disposition","attachment;filename="+fileName+".xlsx");
(inputStream, outputStream);
} catch (Exception e) {
throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, ());
} finally {
closeInput(inputStream);
flushOutput(outputStream);
}
}
private void flushOutput(OutputStream outputStream) {
try {
();
} catch (IOException e) {
("释放流异常", e);
}
}
private void closeInput(InputStream inputStream) {
try {
();
} catch (IOException e) {
("释放流异常", e);
}
}
导出后会存在问题 excel文件导出后打不开!! 只需再中配置如下即可:
<plugins>
<!-- maven资源文件复制插件 -->
<plugin>
<groupId></groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>xls</nonFilteredFileExtension>
<nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>
</plugins>
四、使用easypoi 导出excel
4.1 easypoi 介绍
easypoi 也是国产开源的软件,它通过简单的注解和模板语言 (熟悉的表达式语法),就可以实现excel的导入导出功能。
4.2 编写代码导出excel
我们要的效果:
所需编写的代码:
pom引入依赖:
<dependency>
<groupId></groupId>
<artifactId>easypoi-base</artifactId>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId></groupId>
<artifactId>easypoi-web</artifactId>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId></groupId>
<artifactId>easypoi-annotation</artifactId>
<version>4.1.0</version>
</dependency>
java代码:
// 工具类
public class ExcelUtil {
public static void exportExcel(List<?> list, Class<?> pojoClass, String fileName, boolean isCreateHeader, HttpServletResponse response) {
ExportParams exportParams = new ExportParams();
(isCreateHeader);
Workbook workbook = (exportParams, pojoClass, list);
if (workbook != null) ;
try {
("UTF-8");
("content-Type", "application/-excel");
("Content-Disposition",
"attachment;filename=" + (fileName, "UTF-8"));
(());
} catch (IOException e) {
try {
throw new Exception(());
} catch (Exception e1) {
();
}
}
}
}
import ;
import ;
import ;
@Data
public class CollectDataExcelVo {
/**
* 时间戳
*/
@Excel(name = "时间戳",format="yyyy-MM-dd HH:mm:ss", width = 20.0)
private Date timestamp;
/**
* 设备编码
*/
@Excel(name = "设备名称", width = 20)
private String deviceName;
}
@GetMapping("/export")
@ApiOperation("导出数据")
public void export(HttpServletResponse response) {
String fileName = "template"+".xls";
List<CollectDataExcelVo> list = data();
(list, , fileName, true, response);
}
============
以上就是博主的excel导出方式总结,如有问题 欢迎在评论区留言