java使用poi导出excel的工具类

java使用poi导出excel,使用的包是

	compile group: 'org.apache.poi', name: 'poi', version: '3.15'

工具类代码:



import java.io.OutputStream;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.List;

import org.apache.poi.hssf.usermodel.HSSFCell;
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.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.util.HSSFColor;

/**
 * 
 * @author vn0gv3u
 *
 * @param <T>
 */
public class ExportExcelUtil<T> {

  /**
   * 这是一个通用的方法,利用了JAVA的反射机制,可以将放置在JAVA集合中并且符号一定条件的数据以EXCEL 的形式输出到指定IO设备上
   * 
   * @param title 表格标题名
   * @param dataset 需要显示的数据集合,集合中一定要放置符合javabean风格的类的对象。
   * @param out 与输出设备关联的流对象,可以将EXCEL文档导出到本地文件或者网络中
   * @param pattern 如果有时间数据,设定输出格式。默认为"yyy-MM-dd"
   */
  @SuppressWarnings("deprecation")
  public void exportExcel(String title, List<T> dataset, OutputStream out, String pattern)
      throws Exception {
    // 声明一个工作薄
    HSSFWorkbook workbook = new HSSFWorkbook();
    // 生成一个表格
    HSSFSheet sheet = workbook.createSheet(title);
    // 设置表格默认列宽度为20个字节
    sheet.setDefaultColumnWidth((short) 20);
    // 生成一个样式
    HSSFCellStyle style = workbook.createCellStyle();
    // 设置这些样式
    style.setFillForegroundColor(HSSFColor.SKY_BLUE.index);
    style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
    style.setBorderBottom(HSSFCellStyle.BORDER_THIN);
    style.setBorderLeft(HSSFCellStyle.BORDER_THIN);
    style.setBorderRight(HSSFCellStyle.BORDER_THIN);
    style.setBorderTop(HSSFCellStyle.BORDER_THIN);
    style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
    // 生成一个字体
    HSSFFont font = workbook.createFont();
    font.setColor(HSSFColor.VIOLET.index);
    font.setFontHeightInPoints((short) 12);
    font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
    // 把字体应用到当前的样式
    style.setFont(font);

    // 生成并设置另一个样式
    HSSFCellStyle style2 = workbook.createCellStyle();
    style2.setFillForegroundColor(HSSFColor.LIGHT_YELLOW.index);
    style2.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
    style2.setBorderBottom(HSSFCellStyle.BORDER_THIN);
    style2.setBorderLeft(HSSFCellStyle.BORDER_THIN);
    style2.setBorderRight(HSSFCellStyle.BORDER_THIN);
    style2.setBorderTop(HSSFCellStyle.BORDER_THIN);
    style2.setAlignment(HSSFCellStyle.ALIGN_CENTER);
    style2.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
    // 生成另一个字体
    HSSFFont font2 = workbook.createFont();
    font2.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);
    // 把字体应用到当前的样式
    style2.setFont(font2);

    if (dataset == null || dataset.size() == 0)
      return;
    T tempT = dataset.get(0);
    Field[] heads = tempT.getClass().getDeclaredFields();
    List<String> headList = new ArrayList<>();
    // 获取字段注解的表头
    for (int i = 0; i < heads.length; i++) {
      String name = heads[i].getName();
      headList.add(name);
    }
    // 产生表格标题行
    HSSFRow row = sheet.createRow(0);
    for (int i = 0; i < headList.size(); i++) {
      HSSFCell cell = row.createCell(i);
      cell.setCellStyle(style);
      HSSFRichTextString text = new HSSFRichTextString(headList.get(i));
      cell.setCellValue(text);

    }
    // 遍历集合数据,产生数据行
    Iterator<T> it = dataset.iterator();
    int index = 0;
    while (it.hasNext()) {
      index++;
      row = sheet.createRow(index);
      T t = (T) it.next();
      Field[] fields = t.getClass().getDeclaredFields();
      List<Field> fieldsList = new ArrayList<>();
      for (Field field : fields) {
        fieldsList.add(field);
      }
      for (Field field : fieldsList) {
        HSSFCell cell = row.createCell(fieldsList.indexOf(field));
        cell.setCellStyle(style2);
        String fieldName = field.getName();
        String getMethodName =
            "get" + fieldName.substring(0, 1).toUpperCase() + fieldName.substring(1);
        Class tCls = t.getClass();
        Method getMethod = tCls.getMethod(getMethodName, new Class[] {});
        Object value = getMethod.invoke(t, new Object[] {});
        // 判断值的类型后进行强制类型转换
        String textValue = null;
        if (value == null) {
          cell.setCellValue("");
        }
        if (value instanceof Integer) {
          int intValue = (Integer) value;
          cell.setCellValue(intValue);
        } else if (value instanceof Float) {
          float fValue = (Float) value;
          cell.setCellValue(fValue);
        } else if (value instanceof Double) {
          double dValue = (Double) value;
          cell.setCellValue(dValue);
        } 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(pattern);
          textValue = sdf.format(date);
          cell.setCellValue(textValue);
        } else {
          // 其它数据类型都当作字符串简单处理
          textValue = value == null ? "" : value.toString();
          cell.setCellValue(textValue);
        }
      }
    }
    workbook.write(out);
  }


}

controller调用

 @GetMapping("/test/export/excel/by/day")
  @ResponseBody
  public String exportExcelByTime(HttpServletResponse response) {

    String title = new SimpleDateFormat("yyyy-MM-dd").format(new Date());
    response.reset();
    response.setHeader("Content-disposition", "attachment; filename=" + title + ".xls");
    response.setContentType("application/x-xls");
    //查询到list数据
    List<?> list = new ArrayList<>();
    if (list == null || list.size() < 1) {
      return "没有查到数据";
    }

    try {
      // 输出Excel文件
      OutputStream out = response.getOutputStream();
      ExportExcelUtil util = new ExportExcelUtil();
      util.exportExcel(title, list, out, "yyyy-MM-dd");
      out.close();
    } catch (Exception e) {
      e.printStackTrace();
    }

    return "导出成功";
  }

 

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值