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

相关文章

如何使用 Python 读取 Excel 数据

《如何使用Python读取Excel数据》:本文主要介绍使用Python读取Excel数据的详细教程,通过pandas和openpyxl,你可以轻松读取Excel文件,并进行各种数据处理操... 目录使用 python 读取 Excel 数据的详细教程1. 安装必要的依赖2. 读取 Excel 文件3. 读

MySql match against工具详细用法

《MySqlmatchagainst工具详细用法》在MySQL中,MATCH……AGAINST是全文索引(Full-Textindex)的查询语法,它允许你对文本进行高效的全文搜素,支持自然语言搜... 目录一、全文索引的基本概念二、创建全文索引三、自然语言搜索四、布尔搜索五、相关性排序六、全文索引的限制七

C#实现将Excel表格转换为图片(JPG/ PNG)

《C#实现将Excel表格转换为图片(JPG/PNG)》Excel表格可能会因为不同设备或字体缺失等问题,导致格式错乱或数据显示异常,转换为图片后,能确保数据的排版等保持一致,下面我们看看如何使用C... 目录通过C# 转换Excel工作表到图片通过C# 转换指定单元格区域到图片知识扩展C# 将 Excel

基于Java实现回调监听工具类

《基于Java实现回调监听工具类》这篇文章主要为大家详细介绍了如何基于Java实现一个回调监听工具类,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录监听接口类 Listenable实际用法打印结果首先,会用到 函数式接口 Consumer, 通过这个可以解耦回调方法,下面先写一个

使用Python构建一个Hexo博客发布工具

《使用Python构建一个Hexo博客发布工具》虽然Hexo的命令行工具非常强大,但对于日常的博客撰写和发布过程,我总觉得缺少一个直观的图形界面来简化操作,下面我们就来看看如何使用Python构建一个... 目录引言Hexo博客系统简介设计需求技术选择代码实现主框架界面设计核心功能实现1. 发布文章2. 加

JS+HTML实现在线图片水印添加工具

《JS+HTML实现在线图片水印添加工具》在社交媒体和内容创作日益频繁的今天,如何保护原创内容、展示品牌身份成了一个不得不面对的问题,本文将实现一个完全基于HTML+CSS构建的现代化图片水印在线工具... 目录概述功能亮点使用方法技术解析延伸思考运行效果项目源码下载总结概述在社交媒体和内容创作日益频繁的

基于Python打造一个全能文本处理工具

《基于Python打造一个全能文本处理工具》:本文主要介绍一个基于Python+Tkinter开发的全功能本地化文本处理工具,它不仅具备基础的格式转换功能,更集成了中文特色处理等实用功能,有需要的... 目录1. 概述:当文本处理遇上python图形界面2. 功能全景图:六大核心模块解析3.运行效果4. 相

springboot项目中常用的工具类和api详解

《springboot项目中常用的工具类和api详解》在SpringBoot项目中,开发者通常会依赖一些工具类和API来简化开发、提高效率,以下是一些常用的工具类及其典型应用场景,涵盖Spring原生... 目录1. Spring Framework 自带工具类(1) StringUtils(2) Coll

使用Python将JSON,XML和YAML数据写入Excel文件

《使用Python将JSON,XML和YAML数据写入Excel文件》JSON、XML和YAML作为主流结构化数据格式,因其层次化表达能力和跨平台兼容性,已成为系统间数据交换的通用载体,本文将介绍如何... 目录如何使用python写入数据到Excel工作表用Python导入jsON数据到Excel工作表用

基于Python实现高效PPT转图片工具

《基于Python实现高效PPT转图片工具》在日常工作中,PPT是我们常用的演示工具,但有时候我们需要将PPT的内容提取为图片格式以便于展示或保存,所以本文将用Python实现PPT转PNG工具,希望... 目录1. 概述2. 功能使用2.1 安装依赖2.2 使用步骤2.3 代码实现2.4 GUI界面3.效