溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在java中利用poi實(shí)現(xiàn)一個(gè)動(dòng)態(tài)導(dǎo)出功能

發(fā)布時(shí)間:2020-12-04 15:03:49 來源:億速云 閱讀:225 作者:Leah 欄目:開發(fā)技術(shù)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)怎么在java中利用poi實(shí)現(xiàn)一個(gè)動(dòng)態(tài)導(dǎo)出功能,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

創(chuàng)建一個(gè)excel導(dǎo)出工具類,

package com.zy.util;
import java.io.OutputStream;
import java.lang.reflect.Method;
import java.util.Collection;
import java.util.Iterator;
import javax.servlet.http.HttpServletResponse;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
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.ss.usermodel.Font;
/**
 * * 
 * 
 * @Title: ExportExcelUtil.java 
 * @Package com.jarmsystem.web.util 類描述: 基于POI的javaee導(dǎo)出Excel工具類 
 * @author 范保林
 * @date 2018年11月16日 上午10:38:00
 * @version V1.0 
 */
public class ExPortExcelUtil {
	/**
	 * 
	 * @param response
	 *   請(qǐng)求
	 * @param fileName
	 *   文件名 如:"用戶表"
	 * @param excelHeader
	 *   excel表頭數(shù)組,存放"管理員#admin"格式字符串,"管理員"為excel標(biāo)題行, "admin"為對(duì)象字段名
	 * @param dataLis
	 *   數(shù)據(jù)集合,需與表頭數(shù)組中的字段名一致,并且符合javabean規(guī)范(駝峰命名法)
	 * @return 返回一個(gè)HSSFWorkbook
	 * @throws Exception
	 */
	public static <T> HSSFWorkbook export(HttpServletResponse response, String fileName, String[] excelHeader,
			Collection<T> dataLis) throws Exception {
		response.setContentType("application/x-download");
		response.setCharacterEncoding("utf-8");// 處理編碼問題
		response.setHeader("Content-Disposition",
				"attachment;filename=" + new String(fileName.getBytes("gbk"), "iso8859-1") + ".xls");// 表頭編碼問題
		// 創(chuàng)建一個(gè)工作薄
		HSSFWorkbook wb = new HSSFWorkbook();
		// 設(shè)置標(biāo)題樣式
		HSSFCellStyle titleStyle = wb.createCellStyle();
		// 設(shè)置單元格邊框樣式 
		titleStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);// 上邊框 細(xì)邊線 
		titleStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN);// 下邊框 細(xì)邊線 
		titleStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);// 左邊框 細(xì)邊線 
		titleStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);// 右邊框 細(xì)邊線
		// 設(shè)置單元格對(duì)齊方式 
		titleStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 水平居中 
		titleStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 垂直居中 
		// 設(shè)置字體樣式 
		Font titleFont = wb.createFont();
		titleFont.setFontHeightInPoints((short) 15);// 字體高度 
		titleFont.setFontName("黑體");// 字體樣式 
		titleStyle.setFont(titleFont);
		// 在 workBook 工作簿中添加一個(gè)sheet(工作表) 對(duì)應(yīng)excel文件中的sheet
		HSSFSheet sheet = wb.createSheet();
		// 標(biāo)題數(shù)組
		String[] titleArray = new String[excelHeader.length];
		// 字段名數(shù)組
		String[] fieldArray = new String[excelHeader.length];
		for (int i = 0; i < excelHeader.length; i++) {
			String[] tempArray = excelHeader[i].split("#");
			titleArray[i] = tempArray[0];
			fieldArray[i] = tempArray[1];
		}
		// 在sheet中添加標(biāo)題行
		HSSFRow row = sheet.createRow(0);// 行數(shù)從0開始
		// 自動(dòng)設(shè)置寬度
		sheet.autoSizeColumn(0);
		// 設(shè)置表格默認(rèn)列寬度
		sheet.setDefaultColumnWidth(20);
		// 為標(biāo)題行賦值
		for (int i = 0; i < titleArray.length; i++) {
			// 需要序號(hào)就需要+1 因?yàn)?號(hào)位被序號(hào)占用
			HSSFCell titleCell = row.createCell(i);
			titleCell.setCellValue(titleArray[i]);
			titleCell.setCellStyle(titleStyle);
			sheet.autoSizeColumn(i + 1); // 0 號(hào)被序號(hào)占用
		}
		// 字段的數(shù)據(jù)樣式 標(biāo)題和字段的數(shù)據(jù)樣式不同,需分開設(shè)置
		HSSFCellStyle dataStyle = wb.createCellStyle();
		// 設(shè)置數(shù)據(jù)邊框
		dataStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN);
		dataStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);
		dataStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);
		dataStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);
		// 設(shè)置居中樣式 
		dataStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 水平居中 
		dataStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 垂直居中 
		// 設(shè)置數(shù)據(jù)字體 
		Font dataFont = wb.createFont();
		dataFont.setFontHeightInPoints((short) 12);// 字體高度 
		dataFont.setFontName("宋體");// 字體 
		dataStyle.setFont(dataFont);
		// 遍歷數(shù)據(jù)行,產(chǎn)生數(shù)據(jù)行
		Iterator<T> it = dataLis.iterator();
		int index = 0;
		while (it.hasNext()) {
			index++; // 老話 0號(hào)位被占用
			row = sheet.createRow(index);
			T t = it.next();
			// 利用反射 根據(jù)傳過來的字段名數(shù)組,動(dòng)態(tài)調(diào)用對(duì)應(yīng)的getxxx()方法得到屬性值
			for (int i = 0; i < fieldArray.length; i++) {
				// 需要序號(hào) 就需要 i+1
				HSSFCell dataCell = row.createCell(i);
				dataCell.setCellStyle(dataStyle);
				sheet.autoSizeColumn(i);
				String fieldName = fieldArray[i];
				// 取得對(duì)應(yīng)的getxxx()方法 實(shí)體類命名一定要用駝峰才能分割成功
				String getMethodName = "get" + fieldName.substring(0, 1).toUpperCase() + fieldName.substring(1);
				Class<&#63; extends Object> tCls = t.getClass();// 泛型為Object以及所有Object的子類
				Method getMethod = tCls.getMethod(getMethodName, new Class[] {});// 通過方法名得到對(duì)應(yīng)的方法
				Object value = getMethod.invoke(t, new Object[] {});// 動(dòng)態(tài)調(diào)用方法,得到屬性值
				if (value != null) {
					dataCell.setCellValue(value.toString());// 為當(dāng)前列賦值
				}
			}
		}
		OutputStream outputStream = response.getOutputStream();// 打開流 
		wb.write(outputStream);// HSSFWorkbook寫入流 
		wb.close();// HSSFWorkbook關(guān)閉 
		outputStream.flush();// 刷新流 
		outputStream.close();// 關(guān)閉流 
		
		// excel 各種樣式
		// XSSFCellStyle.ALIGN_CENTER 居中對(duì)齊 
		// XSSFCellStyle.ALIGN_LEFT 左對(duì)齊 
		// XSSFCellStyle.ALIGN_RIGHT 右對(duì)齊 
		// XSSFCellStyle.VERTICAL_TOP 上對(duì)齊 
		// XSSFCellStyle.VERTICAL_CENTER 中對(duì)齊 
		// XSSFCellStyle.VERTICAL_BOTTOM 下對(duì)齊 
		// CellStyle.BORDER_DOUBLE 雙邊線 
		// CellStyle.BORDER_THIN 細(xì)邊線 
		// CellStyle.BORDER_MEDIUM 中等邊線 
		// CellStyle.BORDER_DASHED 虛線邊線 
		// CellStyle.BORDER_HAIR 小圓點(diǎn)虛線邊線 
		// CellStyle.BORDER_THICK 粗邊線 
		return wb;
	}
}

controller 層調(diào)用

/**
	 * 動(dòng)態(tài)導(dǎo)出 excel (想導(dǎo)什么字段就傳固定格式的字段)
	 * 
	 * @param request
	 * @param response
	 * @param expor
	 * @throws Exception
	 */
	@RequestMapping("/excelOut")
	public void ExcelOut(HttpServletRequest request, HttpServletResponse response, String export) {
		export = "管理員#admin,id#id"; // ,手機(jī)號(hào)碼#adminPhone 只導(dǎo)出兩個(gè)字段
		String[] excelHeader = export.split(",");
		List<Tb_User> projectList = new ArrayList<Tb_User>();
		Tb_User tb_User = new Tb_User();
  // 模擬從數(shù)據(jù)庫查詢數(shù)據(jù) 查詢所有
		tb_User.setAdmin("范保林");
		tb_User.setId("1111");
		tb_User.setAdminPhone("111");
		projectList.add(tb_User);
		try {
			ExPortExcelUtil.export(response, "用戶表", excelHeader, projectList);
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
			System.out.println("導(dǎo)出失敗!");
		}
	}

三個(gè)字段的實(shí)體類導(dǎo)出所需要的兩個(gè)字段數(shù)據(jù)

怎么在java中利用poi實(shí)現(xiàn)一個(gè)動(dòng)態(tài)導(dǎo)出功能

補(bǔ)充知識(shí):java使用poi導(dǎo)出excel的內(nèi)容,同時(shí)可以利用反射進(jìn)行動(dòng)態(tài)獲取信息

一,Java-poi導(dǎo)出

我們很多人都是希望我們可以寫一個(gè)我們的Java導(dǎo)出的工具類,不需要用插件來實(shí)現(xiàn),那下面就是我寫的一個(gè)Java導(dǎo)出工具類,話不多說開始。

首先我們針對(duì)的是maven項(xiàng)目,導(dǎo)入相應(yīng)的依賴

<dependency>
  <groupId>org.apache.poi</groupId>
  <artifactId>poi</artifactId>
  <version>3.14</version>
</dependency>
<dependency>
  <groupId>org.apache.poi</groupId>
  <artifactId>poi-ooxml</artifactId>
  <version>3.14</version>
</dependency>

導(dǎo)入了相應(yīng)的依賴后,我們就可以進(jìn)行相應(yīng)的代碼編寫了,下面是我編寫的代碼,這里我們傳入的是泛型類。

public void getexport(Collection< T> dataset ,String[] headers , HttpServletResponse response , HttpServletRequest request ,String fileName){
  //創(chuàng)建一個(gè)excel文件,excel文檔對(duì)象
  HSSFWorkbook workbook= new HSSFWorkbook() ;
  //創(chuàng)建一個(gè)excel表單
  HSSFSheet sheet= workbook.createSheet(fileName) ;
  //設(shè)置單元格樣式1
  HSSFCellStyle cellStyle1=workbook.createCellStyle() ;
  //設(shè)置單元格居中
  cellStyle1.setAlignment(HSSFCellStyle. ALIGN_CENTER) ;
  //設(shè)置填充色
  cellStyle1.setFillPattern(HSSFCellStyle. SOLID_FOREGROUND) ;
  cellStyle1.setFillForegroundColor(HSSFColor.YELLOW. index) ;
  //設(shè)置邊框
  cellStyle1.setBorderLeft(HSSFCellStyle. BORDER_THIN) ;
  cellStyle1.setBorderRight(HSSFCellStyle. BORDER_THIN) ;
  cellStyle1.setBorderTop(HSSFCellStyle. BORDER_THIN) ;
  cellStyle1.setBorderBottom(HSSFCellStyle. BORDER_THIN) ;
  //設(shè)置單元格樣式2
  HSSFCellStyle cellStyle2=workbook.createCellStyle() ;
  //設(shè)置單元格居中
  cellStyle2.setAlignment(HSSFCellStyle. ALIGN_CENTER) ;
  //設(shè)置邊框
  cellStyle2.setBorderLeft(HSSFCellStyle. BORDER_THIN) ;
  cellStyle2.setBorderRight(HSSFCellStyle. BORDER_THIN) ;
  cellStyle2.setBorderTop(HSSFCellStyle. BORDER_THIN) ;
  cellStyle2.setBorderBottom(HSSFCellStyle. BORDER_THIN) ;
  //創(chuàng)建第一行,設(shè)置表頭
  HSSFRow row= sheet.createRow( 0) ;
  for( int i= 0 ;i<headers. length ;i++){
    HSSFCell cell=row.createCell(i) ;
    cell.setCellStyle(cellStyle1) ;
    cell.setCellValue(headers[i]) ;
  }
  //遍歷集合取出數(shù)據(jù)
  Iterator< T> it = dataset.iterator() ;
  int index = 0 ;
  while (it.hasNext()){
    index++ ;
    row = sheet.createRow(index) ;
    T t = ( T) it.next() ;
    // 利用反射,根據(jù)javabean屬性的先后順序,動(dòng)態(tài)調(diào)用getXxx()方法得到屬性值
    Field[] fields = t.getClass().getDeclaredFields() ;
    for ( int i= 0 ;i<fields. length ;i++){
      HSSFCell cell= row.createCell(i) ;
      cell.setCellStyle(cellStyle2) ;
      Object value=getFildValue(fields[i] ,t) ;
      // 判斷值的類型后進(jìn)行強(qiáng)制類型轉(zhuǎn)換
      String textValue = null;
      if(value instanceof Boolean){
        boolean bValue = (Boolean) value ;
        textValue = "是" ;
        if (!bValue)
        {
          textValue = "否" ;
        }
      } else if (value instanceof Date)
      {
        Date date = (Date) value ;
        SimpleDateFormat sdf = new SimpleDateFormat( "yyyy-MM-dd") ;
        textValue = sdf.format(date) ;
      } else
      {
        // 其它數(shù)據(jù)類型都當(dāng)作字符串簡(jiǎn)單處理
        textValue = value.toString() ;
      }
      if (textValue!= null){
          cell.setCellValue(textValue) ;
      }
    }
  }
  //輸出excel文件
  OutputStream output= null;
  try {
    output=response.getOutputStream() ;
    response.setHeader( "Content-disposition" , "attachment; filename="+ URLEncoder. encode(fileName , "UTF-8")+ ".xls") ;
    response.setContentType( "application/vnd.ms-excel;charset=UTF-8") ;
    workbook.write(output) ;
  } catch (IOException e) {
    e.printStackTrace() ;
  } finally {
    try {
      output.close() ;
    } catch (IOException e) {
      e.printStackTrace() ;
    }
  }
}

上述就是小編為大家分享的怎么在java中利用poi實(shí)現(xiàn)一個(gè)動(dòng)態(tài)導(dǎo)出功能了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI