时间:2021-05-19
之前在项目中会用到在Java在后台把数据填入Word文档的模板来提供前台下载,为了自己能随时查看当时的实现方案及方便他人学习我写了这篇博客,访问量已经是我写的博客里第一了。于是乎我在学会用Java在后台利用Apache poi 生成excel文档提供前台下载之后就想着来写一篇姊妹篇啦。
在生成Excel文档的时候我采用了和生成Word时的不同方法,Apache poi。它是用Java编写的免费开源的跨平台的 Java API,提供API给Java程式对Microsoft Office格式档案读和写的功能。想要实现这个功能,就按照下面的步骤来做吧,为了方便起见,我直接拿项目中遇到的实例来举例说明,是的,我在写这篇博客的时候同时也在完成手上的项目。
step1:创建xls格式的模板
表头含有我的甲方信息就打码了,可以看到我搞了一个空的模板文件,现在有很多东西需要在后台填入
step2:前台触发事件
搞一个按钮,用户点击的时候用JavaScript的window.location.href将页面重定向到你处理下载的URL去
比方说,这是我项目的前台,看到那个表面质量按钮吗,来看一下当它被点击的时候调用的函数
function exportBatch() { //get请求,可以传递参数,比方说我这里就传了一堆卷号,我只生成传过去的这堆卷号的检验记录 //参数rollNumbers的细节就不展示了,业务相关 window.location.href = '../ir/exportSurface?rollNumberList=' + rollNumbers; }有朋友可能想用什么Ajax来发送请求,我反正是没搞出来,挺麻烦的,网上找的相关解决方案也都比较蛋疼,因此不传什么复杂的敏感的参数,就这么写就可以。
step3:后台处理
首先你当然要把Apache poi那一套东西引入你的项目啦,我的项目是Maven项目,添加依赖很容易
然后,为了方便导出Excel,在项目中建了一个ExcelUtils工具类,后面给出源码,这么一来导出Excel会变得更简单。ExcelUtils里面除了一些既定的方法外,还有就是你具体怎么去操作模板的方法了。当然你用的少的话可以不用我这工具类,而是在你需要的时候import相关的类,然后在你处理的时候就把操作模板的逻辑写进去也可以。但我这个项目很多次用到导出Excel,所以抽象出一个工具类是很有必要的,符合设计模式。
我的项目是基于SpringMVC的,来看看我后台接收到请求以后做了些什么吧
Controller:
最后调用ExcelUtils里的相关导出方法,这个方法是自定义的,它定义的是怎样去操作模板
自定义的方法:
public static void exportInspectionRecordSurface(HttpServletRequest request, HttpServletResponse response, Map map) throws IOException { //模板的路径,这个在自己的项目中很容易弄错,相对位置一定要写对啊 String psth = request.getRealPath("/") + INSPECTIONRECORD_SURFACE_TEMPLET_PATH; Workbook webBook = readExcel(psth); createCellStyle(webBook); Sheet sheet = webBook.getSheetAt(0); //开始操作模板,找到某行某列(某个cell),需要注意的是这里有个坑,行和列的计数都是从0开始的 //一次数据插入的位置不对,别灰心,多试几次就好啦,你要是能看懂我下面的代码,数据插在了什么位置,你就明白了 int rows = 1; Row row = sheet.getRow(rows); row.createCell(1).setCellValue((String) map.get("sequence")); row.createCell(3).setCellValue((String) map.get("date")); row.createCell(9).setCellValue((String) map.get("chetaihao")); rows = 2; row = sheet.getRow(rows); row.createCell(1).setCellValue((String) map.get("productName")); row.createCell(3).setCellValue((String) map.get("specification")); row.createCell(9).setCellValue((String) map.get("memo")); //检验记录的插入业务相关,不展示,其实就是for循环在合适的行合适的列插入一个个对象的属性即可,你这么聪明,没问题的 writeExcel(response, webBook, "表面质量检验记录"); }ExcelUtils:
//这里得有你自己的package名 import org.apache.poi.hssf.usermodel.HSSFCellStyle; import org.apache.poi.hssf.usermodel.HSSFFont; import org.apache.poi.hssf.usermodel.HSSFRichTextString; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.*; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.*; import java.net.URLEncoder; import java.util.ArrayList; import java.util.List; import java.util.Map; /** * Created by bwju on 2016/12/06. */ public class ExcelUtils { private static final String INSPECTIONRECORD_SURFACE_TEMPLET_PATH = "/asserts/templete/InspectionRecordSurface.xls"; private static HSSFCellStyle cellstyle = null; public static void exportInspectionRecordSurface(HttpServletRequest request, HttpServletResponse response, Map map) throws IOException { //实现上文里有,改个函数名,写你的操作模板函数吧! } private static Workbook readExcel(String filePath) { InputStream in = null; Workbook work = null; try { in = new FileInputStream(filePath); work = new HSSFWorkbook(in); } catch (FileNotFoundException e) { System.out.println("文件路径错误"); e.printStackTrace(); } catch (IOException e) { System.out.println("文件输入流错误"); e.printStackTrace(); } return work; } private static void writeExcel(HttpServletResponse response, Workbook work, String fileName) throws IOException { OutputStream out = null; try { out = response.getOutputStream(); response.setContentType("application/ms-excel;charset=UTF-8"); response.setHeader("Content-Disposition", "attachment;filename=" .concat(String.valueOf(URLEncoder.encode(fileName + ".xls", "UTF-8")))); work.write(out); } catch (IOException e) { System.out.println("输出流错误"); e.printStackTrace(); } finally { out.close(); } } private static Cell setCellStyleWithStyleAndValue(CellStyle style, Cell cell, String value) { cell.setCellStyle(style); cell.setCellValue(value); return cell; } private static Cell setCellStyleWithValue(Cell cell, String value) { cell.setCellStyle(cellstyle); cell.setCellValue(value); return cell; } private static Cell setCellStyleWithStyleAndValue(CellStyle style, Cell cell, RichTextString value) { cell.setCellStyle(style); cell.setCellValue(value); return cell; } private static Cell setCellStyleWithValue(Cell cell, int value) { cell.setCellStyle(cellstyle); cell.setCellValue(value); return cell; } private static Cell setCellStyleWithValue(Cell cell, double value) { cell.setCellStyle(cellstyle); cell.setCellValue(value); return cell; } private static HSSFCellStyle createCellStyle(Workbook wb) { cellstyle = (HSSFCellStyle) wb.createCellStyle(); cellstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER); cellstyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); cellstyle.setBorderLeft(HSSFCellStyle.BORDER_THIN); cellstyle.setBorderRight(HSSFCellStyle.BORDER_THIN); cellstyle.setBorderTop(HSSFCellStyle.BORDER_THIN); cellstyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER); return cellstyle; } }step4:启动项目,然后测试一下,看!完美的导出了。。。有图为证
嗯嗯,文章写到这里就结束啦,Apache poi还提供了很多API在本例中为得到展示,比如能够指定样式等等。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
介绍POI提供API给Java程序对MicrosoftOffice格式档案读和写的功能。POI可以操作的文档格式有excel,word,powerpoint等,
java中导出Excel有两个组件可以使用,一个是jxl,一个是POI,我这里用的是POI。导出是可以在服务器上生成文件,然后下载,也可以利用输出流直接在网页中
本文实例讲述了Java实现读取及生成Excel文件的方法。分享给大家供大家参考,具体如下:一、读取Excel文件需要先下载poi-3.0.1-FINAL-200
使用Apache.POI中HSSFWorkbook导出到Excel,具体内容如下所示:1.引入Poi依赖(3.12)依赖如下:org.apache.poipoi
实现工具类利用注解实现简单的excel数据读取,利用注解对类的属性和excel中的表头映射,使用Apache的poi就不用在业务代码中涉及row,rows这些属