Excel导出工具类.

2024-05-16 01:38
文章标签 工具 excel 导出

本文主要是介绍Excel导出工具类.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 Excel导出工具类.--POI

import java.io.OutputStream;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;import org.apache.commons.lang3.ArrayUtils;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFRichTextString;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.util.HSSFColor;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.RichTextString;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;import com.anhry.app.util.bean.SystemBean;
import com.anhry.app.util.excel.annoation.Excel;/*** Excel导出工具类.*/
public class ExportExcel<T> {public static final Logger LOG = LoggerFactory.getLogger(ExportExcel.class);/*** * @param title     Sheet名字* @param pojoClass Excel对象Class* @param dataSet   Excel对象数据List* @param out       输出流*/public void exportExcel(String title, Class<T> pojoClass,Collection<T> dataSet, OutputStream out) {// 使用userModel模式实现的,当excel文档出现10万级别的大数据文件可能导致OOM内存溢出exportExcelInUserModel(title, pojoClass, dataSet, out);// 使用eventModel实现,可以一边读一边处理,效率较高,但是实现复杂,暂时未实现}private void exportExcelInUserModel(String title, Class<T> pojoClass,Collection<T> dataSet, OutputStream out) {try {// 首先检查数据看是否是正确的if (dataSet == null || dataSet.size() == 0) {throw new Exception("导出数据为空!");}if (title == null || out == null || pojoClass == null) {throw new Exception("传入参数不能为空!");}// 声明一个工作薄Workbook workbook = new HSSFWorkbook();// 生成一个表格Sheet sheet = workbook.createSheet(title);// 标题List<String> exportFieldTitle = new ArrayList<String>();List<Integer> exportFieldWidth = new ArrayList<Integer>();// 拿到所有列名,以及导出的字段的get方法List<Method> methodObj = new ArrayList<Method>();Map<String, Method> convertMethod = new HashMap<String, Method>();// 得到所有字段Field fileds[] = pojoClass.getDeclaredFields();// 遍历整个filedfor (int i = 0; i < fileds.length; i++) {Field field = fileds[i];Excel excel = field.getAnnotation(Excel.class);// 如果设置了annottionif (excel != null) {// 添加到标题exportFieldTitle.add(excel.exportName());// 添加标题的列宽exportFieldWidth.add(excel.exportFieldWidth());// 添加到需要导出的字段的方法String fieldname = field.getName();// System.out.println(i+"列宽"+excel.exportName()+" "+excel.exportFieldWidth());StringBuffer getMethodName = new StringBuffer("get");getMethodName.append(fieldname.substring(01).toUpperCase());getMethodName.append(fieldname.substring(1));Method getMethod = pojoClass.getMethod(getMethodName.toString(), new Class[] {});methodObj.add(getMethod);if (excel.exportConvert() == true) {StringBuffer getConvertMethodName = new StringBuffer("get");getConvertMethodName.append(fieldname.substring(01).toUpperCase());getConvertMethodName.append(fieldname.substring(1));getConvertMethodName.append("Convert");Method getConvertMethod = pojoClass.getMethod(getConvertMethodName.toString(),new Class[] {});convertMethod.put(getMethodName.toString(),getConvertMethod);}}}int index = 0;// 产生表格标题行Row row = sheet.createRow(index);for (int i = 0, exportFieldTitleSize = exportFieldTitle.size(); i < exportFieldTitleSize; i++) {Cell cell = row.createCell(i);// cell.setCellStyle(style);RichTextString text = new HSSFRichTextString(exportFieldTitle.get(i));cell.setCellValue(text);}// 设置每行的列宽for (int i = 0; i < exportFieldWidth.size(); i++) {// 256=65280/255sheet.setColumnWidth(i, 256 * exportFieldWidth.get(i));}Iterator its = dataSet.iterator();// 循环插入剩下的集合while (its.hasNext()) {// 从第二行开始写,第一行是标题index++;row = sheet.createRow(index);Object t = its.next();for (int k = 0, methodObjSize = methodObj.size(); k < methodObjSize; k++) {Cell cell = row.createCell(k);Method getMethod = methodObj.get(k);Object value = null;if (convertMethod.containsKey(getMethod.getName())) {Method cm = convertMethod.get(getMethod.getName());value = cm.invoke(t, new Object[] {});} else {value = getMethod.invoke(t, new Object[] {});}cell.setCellValue(value == null ? "" : value.toString());}}workbook.write(out);} catch (Exception e) {e.printStackTrace();}}/*** * @param title     Sheet名字* @param pojoClass Excel对象Class* @param dataSet   Excel对象数据List* @param out       输出流*/public HSSFWorkbook  exportExcel(String title, Class<T> pojoClass,Collection<T> dataSet) {// 使用userModel模式实现的,当excel文档出现10万级别的大数据文件可能导致OOM内存溢出return exportExcelInUserModel2File(title, pojoClass, dataSet, null);}/*** * @param title     Sheet名字* @param pojoClass Excel对象Class* @param dataSet   Excel对象数据List* @param exportFields   Excel对象选择要导出的字段 * @param out       输出流*/public HSSFWorkbook  exportExcel(String title, Class<T> pojoClass,Collection<T> dataSet,List<String> exportFields) {// 使用userModel模式实现的,当excel文档出现10万级别的大数据文件可能导致OOM内存溢出return exportExcelInUserModel2File(title, pojoClass, dataSet, exportFields);}HSSFWorkbook exportExcelInUserModel2File(String title, Class<T> pojoClass,Collection<T> dataSet)  {return exportExcelInUserModel2File(title, pojoClass, dataSet, null);}private HSSFWorkbook exportExcelInUserModel2File(String title, Class<T> pojoClass,Collection<T> dataSet, List<String> exportFields) {// 声明一个工作薄HSSFWorkbook  workbook = null;try {// 声明一个工作薄workbook = new HSSFWorkbook();// 生成一个表格Sheet sheet = workbook.createSheet(title);// 标题List<String> exportFieldTitle = new ArrayList<String>();List<Integer> exportFieldWidth = new ArrayList<Integer>();// 拿到所有列名,以及导出的字段的get方法List<Method> methodObj = new ArrayList<Method>();Map<String, Method> convertMethod = new HashMap<String, Method>();Class superClazz = null;Field fileds[] = new Field[0];boolean flag = true;while (flag) {if(superClazz != null){superClazz = superClazz.getSuperclass();}else{superClazz = pojoClass.getSuperclass();}if(superClazz.isInstance(Object.class)){flag = false;}else{Field[] sf = superClazz.getDeclaredFields();if(sf != null && sf.length >0){for(int m = 0;m<sf.length;m++){fileds = ArrayUtils.addAll(fileds, sf[m]);}}}}// 得到所有字段Field cfileds[] = pojoClass.getDeclaredFields();if(cfileds != null && cfileds.length >0){for(int n = 0;n<cfileds.length;n++){fileds = ArrayUtils.addAll(fileds, cfileds[n]);}}// 遍历整个filedint exportFieldCount = 0// 要导出字段的数量if(exportFields != null && exportFields.size() > 0) {exportFieldCount = exportFields.size() ; }for (int i = 0; i < fileds.length; i++) {Field field = fileds[i];Excel excel = field.getAnnotation(Excel.class);// 如果设置了annottionif (excel != null) {if(exportFieldCount > 0) {for(String eField: exportFields) {if(eField.equals(excel.exportName())) {addExportField(exportFieldTitle, exportFieldWidth, excel, field, methodObj, pojoClass, convertMethod);exportFieldCount -=1;LOG.debug("exportFieldCount  --- > " + exportFieldCount);break;}}if(exportFieldCount <= 0) {LOG.debug("Break Field Loop!   ------------ !@!");break;}} else {addExportField(exportFieldTitle, exportFieldWidth, excel, field, methodObj, pojoClass, convertMethod);}}}int index = 0;// 产生表格标题行Row row = sheet.createRow(index);row.setHeight((short)450);CellStyle titleStyle = getTitleStyle(workbook);for (int i = 0, exportFieldTitleSize = exportFieldTitle.size(); i < exportFieldTitleSize; i++) {Cell cell = row.createCell(i);// cell.setCellStyle(style);RichTextString text = new HSSFRichTextString(exportFieldTitle.get(i));cell.setCellValue(text);cell.setCellStyle(titleStyle);}// 设置每行的列宽for (int i = 0; i < exportFieldWidth.size(); i++) {// 256=65280/255sheet.setColumnWidth(i, 256 * exportFieldWidth.get(i));}Iterator its = dataSet.iterator();// 循环插入剩下的集合HSSFCellStyle oneStyle = getOneStyle(workbook);HSSFCellStyle twoStyle = getTwoStyle(workbook);while (its.hasNext()) {// 从第二行开始写,第一行是标题index++;row = sheet.createRow(index);row.setHeight((short)350);Object t = its.next();for (int k = 0, methodObjSize = methodObj.size(); k < methodObjSize; k++) {Cell cell = row.createCell(k);Method getMethod = methodObj.get(k);Object value = null;if (convertMethod.containsKey(getMethod.getName())) {Method cm = convertMethod.get(getMethod.getName());value = cm.invoke(t, new Object[] {});} else {value = getMethod.invoke(t, new Object[] {});}cell.setCellValue(value==null?"":value.toString());if(index%2==0)cell.setCellStyle(twoStyle);elsecell.setCellStyle(oneStyle);}}} catch (Exception e) {e.printStackTrace();}return workbook;}private void addExportField(List<String> exportFieldTitle, List<Integer> exportFieldWidth, Excel excel, Field field, List<Method> methodObj, Class<T> pojoClass, Map<String, Method> convertMethod) throws Exception{// 添加到标题exportFieldTitle.add(excel.exportName());// 添加标题的列宽exportFieldWidth.add(excel.exportFieldWidth());// 添加到需要导出的字段的方法String fieldname = field.getName();// System.out.println(i+"列宽"+excel.exportName()+" "+excel.exportFieldWidth());StringBuffer getMethodName = new StringBuffer("get");getMethodName.append(fieldname.substring(01).toUpperCase());getMethodName.append(fieldname.substring(1));Method getMethod = pojoClass.getMethod(getMethodName.toString(), new Class[] {});methodObj.add(getMethod);if (excel.exportConvert() == true) {//----------------------------------------------------------------//update-begin--Author:Quainty  Date:20130524 for:[8]excel导出时间问题// 用get/setXxxxConvert方法名的话, 由于直接使用了数据库绑定的Entity对象,注入会有冲突StringBuffer getConvertMethodName = new StringBuffer("convertGet");getConvertMethodName.append(fieldname.substring(01).toUpperCase());getConvertMethodName.append(fieldname.substring(1));//getConvertMethodName.append("Convert");//update-end--Author:Quainty  Date:20130524 for:[8]excel导出时间问题//----------------------------------------------------------------// System.out.println("convert: "+getConvertMethodName.toString());Method getConvertMethod = pojoClass.getMethod(getConvertMethodName.toString(),new Class[] {});convertMethod.put(getMethodName.toString(),getConvertMethod);}}/*** 取得一个类添加了@Excel 注解的所有属性中 该注解中的exportName* @param pojoClass* @return*/public  List<SystemBean> getExportFields(Class<T> pojoClass) {// 标题List<SystemBean> exportNames = new ArrayList<SystemBean>();Class superClazz = null;Field fileds[] = new Field[0];boolean flag = true;while (flag) {if(superClazz != null){superClazz = superClazz.getSuperclass();}else{superClazz = pojoClass.getSuperclass();}if(superClazz.isInstance(Object.class)){flag = false;}else{Field[] sf = superClazz.getDeclaredFields();if(sf != null && sf.length >0){for(int m = 0;m<sf.length;m++){fileds = ArrayUtils.addAll(fileds, sf[m]);System.out.println(sf[m].getName());}}}}// 得到所有字段Field cfileds[] = pojoClass.getDeclaredFields();if(cfileds != null && cfileds.length >0){for(int n = 0;n<cfileds.length;n++){fileds = ArrayUtils.addAll(fileds, cfileds[n]);}}// 遍历整个filedfor (int i = 0; i < fileds.length; i++) {Field field = fileds[i];Excel excel = field.getAnnotation(Excel.class);// 如果设置了annottionif (excel != null) {SystemBean sb = new SystemBean();sb.setId(excel.exportName());sb.setName(excel.exportName());// 添加到标题exportNames.add(sb);}}return exportNames;}/*** 导出excel的样式* @param workbook* @return*/public static HSSFCellStyle getTitleStyle(HSSFWorkbook workbook){// 产生Excel表头HSSFCellStyle titleStyle = workbook.createCellStyle();titleStyle.setBorderBottom(HSSFCellStyle.BORDER_DOUBLE);    //设置边框样式titleStyle.setBorderLeft((short)2);     //左边框titleStyle.setBorderRight((short)2);    //右边框titleStyle.setBorderTop((short)2);     //左边框titleStyle.setBorderBottom((short)2);    //右边框titleStyle.setBorderTop(HSSFCellStyle.BORDER_DOUBLE);    //顶边框titleStyle.setFillForegroundColor(HSSFColor.SKY_BLUE.index);    //填充的背景颜色titleStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);titleStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);    //填充图案return titleStyle;}public static HSSFCellStyle getTwoStyle(HSSFWorkbook workbook){// 产生Excel表头// 产生Excel表头HSSFCellStyle style = workbook.createCellStyle(); style.setBorderLeft((short)1);     //左边框style.setBorderRight((short)1);    //右边框style.setBorderBottom((short)1);style.setBorderTop((short)1);style.setFillForegroundColor(HSSFColor.LIGHT_TURQUOISE.index);    //填充的背景颜色style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);    //填充图案return style;}public static HSSFCellStyle getOneStyle(HSSFWorkbook workbook){// 产生Excel表头// 产生Excel表头HSSFCellStyle style = workbook.createCellStyle(); style.setBorderLeft((short)1);     //左边框style.setBorderRight((short)1);    //右边框style.setBorderBottom((short)1);style.setBorderTop((short)1); return style;}}

这篇关于Excel导出工具类.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/993513

相关文章

C#实现高性能Excel百万数据导出优化实战指南

《C#实现高性能Excel百万数据导出优化实战指南》在日常工作中,Excel数据导出是一个常见的需求,然而,当数据量较大时,性能和内存问题往往会成为限制导出效率的瓶颈,下面我们看看C#如何结合EPPl... 目录一、技术方案核心对比二、各方案选型建议三、性能对比数据四、核心代码实现1. MiniExcel

Linux系统调试之ltrace工具使用与调试过程

《Linux系统调试之ltrace工具使用与调试过程》:本文主要介绍Linux系统调试之ltrace工具使用与调试过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐... 目录一、ltrace 定义与作用二、ltrace 工作原理1. 劫持进程的 PLT/GOT 表2. 重定

POI从入门到实战轻松完成EasyExcel使用及Excel导入导出功能

《POI从入门到实战轻松完成EasyExcel使用及Excel导入导出功能》ApachePOI是一个流行的Java库,用于处理MicrosoftOffice格式文件,提供丰富API来创建、读取和修改O... 目录前言:Apache POIEasyPoiEasyExcel一、EasyExcel1.1、核心特性

使用Java编写一个字符脱敏工具类

《使用Java编写一个字符脱敏工具类》这篇文章主要为大家详细介绍了如何使用Java编写一个字符脱敏工具类,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1、字符脱敏工具类2、测试工具类3、测试结果1、字符脱敏工具类import lombok.extern.slf4j.Slf4j

使用Python开发Markdown兼容公式格式转换工具

《使用Python开发Markdown兼容公式格式转换工具》在技术写作中我们经常遇到公式格式问题,例如MathML无法显示,LaTeX格式错乱等,所以本文我们将使用Python开发Markdown兼容... 目录一、工具背景二、环境配置(Windows 10/11)1. 创建conda环境2. 获取XSLT

Python实现微信自动锁定工具

《Python实现微信自动锁定工具》在数字化办公时代,微信已成为职场沟通的重要工具,但临时离开时忘记锁屏可能导致敏感信息泄露,下面我们就来看看如何使用Python打造一个微信自动锁定工具吧... 目录引言:当微信隐私遇到自动化守护效果展示核心功能全景图技术亮点深度解析1. 无操作检测引擎2. 微信路径智能获

使用Java将各种数据写入Excel表格的操作示例

《使用Java将各种数据写入Excel表格的操作示例》在数据处理与管理领域,Excel凭借其强大的功能和广泛的应用,成为了数据存储与展示的重要工具,在Java开发过程中,常常需要将不同类型的数据,本文... 目录前言安装免费Java库1. 写入文本、或数值到 Excel单元格2. 写入数组到 Excel表格

利用Python打造一个Excel记账模板

《利用Python打造一个Excel记账模板》这篇文章主要为大家详细介绍了如何使用Python打造一个超实用的Excel记账模板,可以帮助大家高效管理财务,迈向财富自由之路,感兴趣的小伙伴快跟随小编一... 目录设置预算百分比超支标红预警记账模板功能介绍基础记账预算管理可视化分析摸鱼时间理财法碎片时间利用财

Java中的工具类命名方法

《Java中的工具类命名方法》:本文主要介绍Java中的工具类究竟如何命名,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录Java中的工具类究竟如何命名?先来几个例子几种命名方式的比较到底如何命名 ?总结Java中的工具类究竟如何命名?先来几个例子JD

利用python实现对excel文件进行加密

《利用python实现对excel文件进行加密》由于文件内容的私密性,需要对Excel文件进行加密,保护文件以免给第三方看到,本文将以Python语言为例,和大家讲讲如何对Excel文件进行加密,感兴... 目录前言方法一:使用pywin32库(仅限Windows)方法二:使用msoffcrypto-too