package cn.knet.data.untils;

import java.awt.Color;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.text.SimpleDateFormat;
import java.util.Collection;
import java.util.Date;
import java.util.Iterator;
import java.util.regex.Matcher;
import java.util.regex.Pattern; import org.apache.commons.beanutils.BeanUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFCellStyle;
import org.apache.poi.xssf.usermodel.XSSFColor;
import org.apache.poi.xssf.usermodel.XSSFFont;
import org.apache.poi.xssf.usermodel.XSSFRichTextString;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook; public class ExportExcelUtil2<T> { public void exportExcel(Collection<T> dataset,String[] headers,String path,String excelName,String sheetName,String title) throws IOException
{
// 声明一个工作薄
XSSFWorkbook workbook = new XSSFWorkbook();
// 生成一个表格
XSSFSheet sheet=workbook.createSheet(); // 设置表格默认列宽度为15个字节
//要是提供的sheetName就给第一个表格设置名字
if(StringUtils.isNotBlank(sheetName))
{
workbook.setSheetName(0,sheetName);
}
//设置行的默认值
int row_num=0;
if(StringUtils.isNotBlank(title)){
XSSFRow rowtitle = sheet.createRow(row_num);
rowtitle.setHeightInPoints(23);
XSSFCell cellHead = rowtitle.createCell(0);
cellHead.setCellValue(title);
//合并标题的单元格
sheet.addMergedRegion(new CellRangeAddress(row_num,row_num,0,headers.length-1));//startRow,endRow,startColumn,endColumn
//设置总标题样式==============================
//设置字体
XSSFFont font_title = workbook.createFont();
font_title.setColor(new XSSFColor(Color.black).getIndexed());
font_title.setFontHeightInPoints((short) 16);
font_title.setBoldweight(XSSFFont.BOLDWEIGHT_BOLD);
//设置title样式
XSSFCellStyle style_title = workbook.createCellStyle();
style_title.setAlignment(XSSFCellStyle.ALIGN_CENTER);
style_title.setBorderBottom(XSSFCellStyle.BORDER_THIN);
style_title.setBorderLeft(XSSFCellStyle.BORDER_THIN);
style_title.setBorderRight(XSSFCellStyle.BORDER_THIN);
style_title.setBorderTop(XSSFCellStyle.BORDER_THIN);
style_title.setFont(font_title);
//设置cell样式
cellHead.setCellStyle(style_title);
//解决合并单元格后加边框问题
for(int i=1;i<headers.length;i++){
cellHead = rowtitle.createCell(i);
cellHead.setCellValue("");
cellHead.setCellStyle(style_title);
} //行数加1行
row_num=row_num+1;
} //设置head样式============================================
// 生成一个字体
XSSFFont font_head = workbook.createFont();
font_head.setColor(new XSSFColor(Color.BLACK).getIndexed());
font_head.setFontHeightInPoints((short) 12);
font_head.setBoldweight(XSSFFont.BOLDWEIGHT_BOLD);
// 生成head样式
XSSFCellStyle style_head = workbook.createCellStyle();
// 把字体应用到当前的样式
style_head.setFont(font_head);
// 设置这些样式
// style_head.setFillForegroundColor(HSSFColor.SKY_BLUE.index);
//style_head.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
style_head.setBorderBottom(XSSFCellStyle.BORDER_THIN);
style_head.setBorderLeft(XSSFCellStyle.BORDER_THIN);
style_head.setBorderRight(XSSFCellStyle.BORDER_THIN);
style_head.setBorderTop(XSSFCellStyle.BORDER_THIN);
style_head.setAlignment(XSSFCellStyle.ALIGN_CENTER);
//设置head样式======End==================================
//设置body样式==================================================
// 生成另一个字体
XSSFFont font_body = workbook.createFont();
font_body.setBoldweight(XSSFFont.BOLDWEIGHT_NORMAL);
//生成body样式
XSSFCellStyle style_body = workbook.createCellStyle();
// 把字体应用到当前的样式
style_body.setFont(font_body);
// style_body.setFillForegroundColor(HSSFColor.LIGHT_YELLOW.index);
//style_body.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
style_body.setBorderBottom(XSSFCellStyle.BORDER_THIN);
style_body.setBorderLeft(XSSFCellStyle.BORDER_THIN);
style_body.setBorderRight(XSSFCellStyle.BORDER_THIN);
style_body.setBorderTop(XSSFCellStyle.BORDER_THIN);
style_body.setAlignment(XSSFCellStyle.ALIGN_CENTER);
style_body.setVerticalAlignment(XSSFCellStyle.VERTICAL_CENTER); // 添加表格标题行
XSSFRow row_head = sheet.createRow(row_num);
row_head.setHeightInPoints(25);
for (int i = 0; i < headers.length; i++) {
XSSFCell cell = row_head.createCell(i);
cell.setCellStyle(style_head);
XSSFRichTextString text = new XSSFRichTextString(headers[i]);
cell.setCellValue(text);
}
//添加标题行后行号加1
row_num=row_num+1;
//添加body
// 遍历集合数据,产生数据行
//Field[] fields = types.getDeclaredFields();
Iterator<T> it = dataset.iterator();
while (it.hasNext()) {
System.err.println(row_num);
XSSFRow row_body = sheet.createRow(row_num);
row_body.setHeightInPoints(20); T t = (T) it.next();
// 利用反射,根据javabean属性的先后顺序,动态调用getXxx()方法得到属性值
Field[] fields = t.getClass().getDeclaredFields();
for (int i = 0; i < fields.length; i++) { //设置列宽度自适应
sheet.autoSizeColumn(i,true); XSSFCell cell = row_body.createCell(i);
cell.setCellStyle(style_body);
Field field = fields[i];
String fieldName = field.getName();
String getMethodName = "get"+ fieldName.substring(0, 1).toUpperCase()+ fieldName.substring(1);
try {
Class<? extends Object> tCls = t.getClass();
Method getMethod = tCls.getMethod(getMethodName,new Class[] {});
Object value = getMethod.invoke(t, new Object[] {});
// 判断值的类型后进行强制类型转换
String textValue = null;
if (value instanceof Integer) {
int intValue = (Integer) value;
cell.setCellValue(intValue);
}
else if (value instanceof Float) {
float fValue = (Float) value;
textValue = String.valueOf(fValue);
cell.setCellValue(textValue);
}
else if (value instanceof Double) {
double dValue = (Double) value;
textValue = String.valueOf(dValue);
cell.setCellValue(textValue);
}
else if (value instanceof Long) {
long longValue = (Long) value;
cell.setCellValue(longValue);
}
else if (value instanceof Date) {
Date date = (Date) value;
SimpleDateFormat sdf = new SimpleDateFormat("yyy-MM-dd HH:mm:ss");
textValue = sdf.format(date);
}else {
// 其它数据类型都当作字符串简单处理
textValue = value.toString();
} if (textValue != null) {
Pattern p = Pattern.compile("^//d+(//.//d+)?{1}");
Matcher matcher = p.matcher(textValue);
if (matcher.matches()) {
// 是数字当作double处理
cell.setCellValue(Double.parseDouble(textValue));
} else {
XSSFRichTextString richString = new XSSFRichTextString(textValue);
XSSFFont font3 = workbook.createFont();
font3.setColor(new XSSFColor(Color.BLACK).getIndexed());
richString.applyFont(font3);
cell.setCellValue(richString);
}
} } catch (SecurityException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} finally {
// 清理资源
}
}
row_num=row_num+1;
}
OutputStream os = new FileOutputStream(new File(path+"/"+excelName+".xlsx"));
try{
workbook.write(os);
}
catch(Exception ex){
ex.printStackTrace();
}
finally{
os.flush();
os.close();
} } public void exportExcelFast(Collection<T> dataset,String[] headers,Class<T> t,String path,String excelName,String sheetName) throws IOException
{
FileOutputStream output = new FileOutputStream(new File(path+"/"+excelName+".xlsx")); //读取的文件路径
// 声明一个工作薄
XSSFWorkbook workbook = new XSSFWorkbook();
// 生成一个表格
XSSFSheet sheet=workbook.createSheet(sheetName);
XSSFRow row_head = sheet.createRow(0);
for (int i = 0; i < headers.length; i++) {
XSSFCell cell = row_head.createCell(i);
XSSFRichTextString text = new XSSFRichTextString(headers[i]);
cell.setCellValue(text);
} Field[] fields = t.getDeclaredFields();
int row_num=1;
for (T tt : dataset) { XSSFRow row_body = sheet.createRow(row_num);
for(int i=0;i<fields.length;i++){
XSSFCell cell = row_body.createCell(i);
Object v;
try {
v = BeanUtils.getProperty(tt, fields[i].getName());
String value =v==null?"":v.toString();
cell.setCellType(XSSFCell.CELL_TYPE_STRING);//文本格式
cell.setCellValue(value);//写入内容
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InvocationTargetException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (NoSuchMethodException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}//.getBeanProperty(tt, fields[i].getName()); }
row_num++;
} workbook.write(output);
output.flush();
output.close();
}
public static void main(String[] args){
/* List<Flow> list = new ArrayList<Flow>();
for(int i=0;i<50000;i++)
{
Flow f = new Flow();
f.setCurkey("枯萎奇才霏霏夺标需要奇怪棒棒酩酊大醉大模大样大模大样"+i);
f.setFlow(i);
list.add(f);
}
ExportExcelUtil2<Flow> ex = new ExportExcelUtil2<Flow>();
String[] headers= {"KEY","流水"};
try {
//ex.exportExcelFast(list, headers,Flow.class, "D:\\", "MYExcel", "MySheet");
ex.exportExcel(list, headers, "D:\\", "MYExcel", "MySheet","");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
} }

导出Excel offer2007以上的更多相关文章

  1. C#使用Aspose.Cells导出Excel简单实现

    首先,需要添加引用Aspose.Cells.dll,官网下载地址:http://downloads.aspose.com/cells/net 将DataTable导出Xlsx格式的文件下载(网页输出) ...

  2. 利用poi导出Excel

    import java.lang.reflect.Field;import java.lang.reflect.InvocationTargetException;import java.lang.r ...

  3. [django]数据导出excel升级强化版(很强大!)

    不多说了,原理采用xlwt导出excel文件,所谓的强化版指的是实现在网页上选择一定条件导出对应的数据 之前我的博文出过这类文章,但只是实现导出数据,这次左思右想,再加上网上的搜索,终于找出方法实现条 ...

  4. NPOI导出Excel

    using System;using System.Collections.Generic;using System.Linq;using System.Text;#region NPOIusing ...

  5. ASP.NET Core 导入导出Excel xlsx 文件

    ASP.NET Core 使用EPPlus.Core导入导出Excel xlsx 文件,EPPlus.Core支持Excel 2007/2010 xlsx文件导入导出,可以运行在Windows, Li ...

  6. asp.net DataTable导出Excel 自定义列名

    1.添加引用NPOI.dll 2.cs文件头部添加 using NPOI.HSSF.UserModel; using NPOI.SS.UserModel; using System.IO; 3.代码如 ...

  7. Aspose.Cells导出Excel(1)

    利用Aspose.Cells导出excel 注意的问题 1.DataTable的处理 2.进行编码,便于中文名文件下载 3.别忘了Aspose.Cells.dll(可以自己在网上搜索) public ...

  8. 前端导出Excel兼容写法

    今天整理出在Web前端导出Excel的写法,写了一个工具类,对各个浏览器进行了兼容. 首先,导出的数据来源可能有两种: 1. 页面的HTML内容(一般是table) 2. 纯数据 PS:不同的数据源, ...

  9. JS导出excel 兼容ie、chrome、firefox

    运用js实现将页面中的table导出为excel文件,页面显示如下: 导出的excel文件显示如下: 实现代码: <!DOCTYPE html> <html> <head ...

随机推荐

  1. BeanNameViewResolver

    As described in the documentation, BeanNameViewResolver resolves Views declared as beans. Usually yo ...

  2. 转: PE rva to raw 虚拟偏移地址和文件物理偏移地址

    +---------+---------+---------+---------+---------+---------+| 段名称 虚拟地址 虚拟大小 物理地址 物理大小 标志 |+-------- ...

  3. 关于Bitcode的探索

    Bitcode概述         Bitcode is an intermediate representation of a compiled program. Apps you upload t ...

  4. SQLSERVER 表名数据库名作为变量 必须使用动态SQL(源自网络)

    动态语句基本语法: 1 :普通SQL语句可以用exec执行 Select * from tableName exec('select * from tableName') exec sp_execut ...

  5. Scrambled Polygon---poj2007(利用叉积排序)

    题目链接:http://poj.org/problem?id=2007 题意:乱序给出凸多边形的顶点坐标,要求按逆时 针顺序输出各顶点.给的第一个点一定是 (0,0),没有其他点在坐标轴上,没有三点 ...

  6. Java学习-022-Properties 文件数据写入

    Properties 配置文件写入主要通过 Properties.setProperty 和 Properties.store 两个方法,此文以一个简单的 properties 文件写入源码做示例. ...

  7. 我的工具箱之Putty

    这是类似于SecureCrt的终端仿真软件,个人感觉比SecureCrt差一点. 下载地址是:http://pan.baidu.com/s/1sko0GrF SecureCrt网址在我的工具箱之Sec ...

  8. Malformed POM expected START_TAG or END_TAG not TEXT

    I resolved this problem by replacing blank space to tab. 规范些就解决这个问题了!!! 由此可见规范的重要性!

  9. 分享一个移动项目中消除click事件点击延迟的方法

    对于前端工程师来说,apicloud无疑给我们提供了很好的平台,有各种各样的模块供我们使用,但是在实际项目的时候,很大部分的代码,还是需要我们用html css js来实现的.但是呢,移动端页面对于c ...

  10. Inside Flask - app.py - 1

    Inside Flask - app.py - 1 除 werkzeug 和 jinja2 等依赖库外,app.py 是在 Flask 的 __init__.py 中导入的第一个 Flask 自身的模 ...