1.导入依赖
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.17</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.17</version>
</dependency>
2.写一个java方法来输出一个Excel文件
//创建Excel
HSSFWorkbook wb = new HSSFWorkbook();
//创建一个Excel的sheet
HSSFSheet sheet=wb.createSheet("sheet0");
//创建HSSFRow对象,创建第一行
HSSFRow row=sheet.createRow(0);
//创建HSSFCell对象,创建第一列
HSSFCell cell=row.createCell(0);
cell.setCellValue("A");
//输出Excel文件
try {
FileOutputStream outputStream=new FileOutputStream("D:\\test\\book.xls");
wb.write(outputStream);
outputStream.flush();
} catch (FileNotFoundException e) {
e.printStackTrace();
}catch (IOException e) {
e.printStackTrace();
}
3.但是在真实的业务中,我们应该是在控制层中调用,业务类中实现,前端可以下载的
控制类实现方法:
@RequestMapping("/import")
public String excel(HttpServletResponse response){
//创建HSSFWorkbook对象(excel的文档对象)
HSSFWorkbook wb =new HSSFWorkbook();
//建立新的sheet对象(excel的表单)
HSSFSheet sheet = wb.createSheet("成绩表");
//在sheet里创建第一行,参数为行索引(excel的行),可以是0~65535之间的任何一个
HSSFRow row1 = sheet.createRow(0);
//创建单元格(excel的单元格,参数为列索引,可以是0~255之间的任何一个
HSSFCell cell = row1.createCell(0);
//设置单元格内容
cell.setCellValue("学员考试成绩一览表");
//合并单元格CellRangeAddress构造参数依次表示起始行,截至行,起始列, 截至列
sheet.addMergedRegion(new CellRangeAddress(0,0,0,3));
//在sheet里创建第二行
HSSFRow row2 = sheet.createRow(1);
//创建单元格并设置单元格内容
row2.createCell(0).setCellValue("姓名");
row2.createCell(1).setCellValue("班级");
row2.createCell(2).setCellValue("笔试成绩");
row2.createCell(3).setCellValue("机试成绩");
//在sheet里创建第三行
HSSFRow row3 = sheet.createRow(2);
row3.createCell(0).setCellValue("李明");
row3.createCell(1).setCellValue("As178");
row3.createCell(2).setCellValue(87);
row3.createCell(3).setCellValue(78);
//输出Excel文件
try {
OutputStream output = response.getOutputStream();
response.reset();
response.setHeader("Content-disposition", "attachment; filename=details.xls");
response.setContentType("application/msexcel");
wb.write(output);
output.close();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
参考:https://blog.csdn.net/ethan_10/article/details/80335350