本文主要是将数据库取出的数据按照自定义的行列格式导出到excel中,POI则是实现我们需求所用到的技术。
- POI介绍
- 使用spring boot导入相关依赖
- 获取数据(自行处理)
- 完整代码实例:创建excel,将数据写入excel
####1.POI介绍 要想使用POI对Excel进行操作,我们需要先了解一下Excel的两种版本:一种是97-2003版本扩展名是“.xls”;一种是2007版本扩展名是“.xlsx”。POI分别针对这两种版本需要导入的jar包不同,操作类也不同。
HSSF:操作的是.xls;XSSF:操作的是.xlsx。
不管哪种操作,基本思路都是一致,先要对应一个Excel文件,然后在对应文件中的某个sheet,接下来在操作某一行和这一行中的某一列。对应POI包:文件(webbook)、sheet(sheet)、行(row)和具体单元格(cell)。
详细操作请参照POI官网的Excel(HSSF/XSSF)操作
####2.通过spring boot导入依赖 为了使用java操控excel,需要将相关的jar引入,对于HSSF只需要导入POI.jar,而XSSF则需要导入四个jar,具体导入见下面代码 将代码块的依赖放入工程的pom.xml文件中就可以了。 工程不是spring boot的需要手动将下面jar导入。
<!-- HSSF需要引入的 -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>RELEASE</version>
</dependency>
<!-- XSSF需要引入的 -->
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version><!--$NO-MVN-MAN-VER$ -->
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.9</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.9</version>
</dependency>
####3完整代码实例:简单的创建excel,将数据写入excel 依赖导入成功之后,就可以开始进行excel的生成。详细步骤在代码注释中有说明。
/**
* 创建excel
* @param listresult 是需要写入excel中的数据,通过map中的k-v来将数据写入excel
* @return
*/
private XSSFWorkbook createUserListExcel(List<Map<String,Object>> listresult){
// 1.创建HSSFWorkbook,一个HSSFWorkbook对应一个Excel文件
XSSFWorkbook wb = new XSSFWorkbook();
// 2.在workbook中添加一个sheet,对应Excel文件中的sheet
XSSFSheet sheet = wb.createSheet("sheet1");
// 3.设置表头,即每个列的列名
String[] titel = {"rowName1","rowName2","rowName3","rowName4"};
// 3.1创建第一行
XSSFRow row = sheet.createRow(0);
// 此处创建一个序号列
row.createCell(0).setCellValue("序号");
// 将列名写入
for (int i = 0; i < titel.length; i++) {
// 给列写入数据,创建单元格,写入数据
row.createCell(i+1).setCellValue(titel[i]);
}
// 写入正式数据
for (int i = 0; i < listresult.size(); i++) {
// 创建行
row = sheet.createRow(i+1);
// 序号
row.createCell(0).setCellValue(i+1);
// 医院名称
row.createCell(1).setCellValue(listresult.get(i).get("rowKey1").toString());
sheet.autoSizeColumn(1, true);
// 业务类型
row.createCell(2).setCellValue(listresult.get(i).get("rowKey2").toString());
// 异常信息
row.createCell(3).setCellValue(listresult.get(i).get("rowKey3").toString());
// 数量
row.createCell(4).setCellValue(listresult.get(i).get("rowKey4").toString());
}
/**
* 上面的操作已经是生成一个完整的文件了,只需要将生成的流转换成文件即可;
* 下面的设置宽度可有可无,对整体影响不大
*/
// 设置单元格宽度
int curColWidth = 0;
for (int i = 0; i <= titel.length; i++) {
// 列自适应宽度,对于中文半角不友好,如果列内包含中文需要对包含中文的重新设置。
sheet.autoSizeColumn(i, true);
// 为每一列设置一个最小值,方便中文显示
curColWidth = sheet.getColumnWidth(i);
if(curColWidth<2500){
sheet.setColumnWidth(i, 2500);
}
// 第3列文字较多,设置较大点。
sheet.setColumnWidth(3, 8000);
}
return wb;
}
/**
* 用户列表导出
* @param userForm
*/
private String downUserList(List<Map<String,Object>> listresult){
// getTime()是一个返回当前时间的字符串,用于做文件名称
String name = getTime();
// csvFile是我的一个路径,自行设置就行
String ys = csvFile + "//" + name + ".xlsx";
// 1.生成Excel
XSSFWorkbook userListExcel = createUserListExcel(listresult);
try{
// 输出成文件
File file = new File(csvFile);
if(file.exists() || !file.isDirectory()) {
file.mkdirs();
}
// TODO 生成的wb对象传输
FileOutputStream outputStream = new FileOutputStream(new File(ys));
userListExcel.write(outputStream);
outputStream.close();
}catch(Exception e){
e.printStackTrace();
}
return name;
}
因为工作中多次用到了这个,所以简单的记录一下,如有问题,欢迎指正。 点击进入简书地址 点击进入csdn地址
来源:oschina
链接:https://my.oschina.net/u/4337432/blog/3863651