中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在java中利用poi實現一個動態導出功能

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

這期內容當中小編將會給大家帶來有關怎么在java中利用poi實現一個動態導出功能,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

創建一個excel導出工具類,

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導出Excel工具類 
 * @author 范保林
 * @date 2018年11月16日 上午10:38:00
 * @version V1.0 
 */
public class ExPortExcelUtil {
	/**
	 * 
	 * @param response
	 *   請求
	 * @param fileName
	 *   文件名 如:"用戶表"
	 * @param excelHeader
	 *   excel表頭數組,存放"管理員#admin"格式字符串,"管理員"為excel標題行, "admin"為對象字段名
	 * @param dataLis
	 *   數據集合,需與表頭數組中的字段名一致,并且符合javabean規范(駝峰命名法)
	 * @return 返回一個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");// 表頭編碼問題
		// 創建一個工作薄
		HSSFWorkbook wb = new HSSFWorkbook();
		// 設置標題樣式
		HSSFCellStyle titleStyle = wb.createCellStyle();
		// 設置單元格邊框樣式 
		titleStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);// 上邊框 細邊線 
		titleStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN);// 下邊框 細邊線 
		titleStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);// 左邊框 細邊線 
		titleStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);// 右邊框 細邊線
		// 設置單元格對齊方式 
		titleStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 水平居中 
		titleStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 垂直居中 
		// 設置字體樣式 
		Font titleFont = wb.createFont();
		titleFont.setFontHeightInPoints((short) 15);// 字體高度 
		titleFont.setFontName("黑體");// 字體樣式 
		titleStyle.setFont(titleFont);
		// 在 workBook 工作簿中添加一個sheet(工作表) 對應excel文件中的sheet
		HSSFSheet sheet = wb.createSheet();
		// 標題數組
		String[] titleArray = new String[excelHeader.length];
		// 字段名數組
		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中添加標題行
		HSSFRow row = sheet.createRow(0);// 行數從0開始
		// 自動設置寬度
		sheet.autoSizeColumn(0);
		// 設置表格默認列寬度
		sheet.setDefaultColumnWidth(20);
		// 為標題行賦值
		for (int i = 0; i < titleArray.length; i++) {
			// 需要序號就需要+1 因為0號位被序號占用
			HSSFCell titleCell = row.createCell(i);
			titleCell.setCellValue(titleArray[i]);
			titleCell.setCellStyle(titleStyle);
			sheet.autoSizeColumn(i + 1); // 0 號被序號占用
		}
		// 字段的數據樣式 標題和字段的數據樣式不同,需分開設置
		HSSFCellStyle dataStyle = wb.createCellStyle();
		// 設置數據邊框
		dataStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN);
		dataStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);
		dataStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);
		dataStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);
		// 設置居中樣式 
		dataStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 水平居中 
		dataStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 垂直居中 
		// 設置數據字體 
		Font dataFont = wb.createFont();
		dataFont.setFontHeightInPoints((short) 12);// 字體高度 
		dataFont.setFontName("宋體");// 字體 
		dataStyle.setFont(dataFont);
		// 遍歷數據行,產生數據行
		Iterator<T> it = dataLis.iterator();
		int index = 0;
		while (it.hasNext()) {
			index++; // 老話 0號位被占用
			row = sheet.createRow(index);
			T t = it.next();
			// 利用反射 根據傳過來的字段名數組,動態調用對應的getxxx()方法得到屬性值
			for (int i = 0; i < fieldArray.length; i++) {
				// 需要序號 就需要 i+1
				HSSFCell dataCell = row.createCell(i);
				dataCell.setCellStyle(dataStyle);
				sheet.autoSizeColumn(i);
				String fieldName = fieldArray[i];
				// 取得對應的getxxx()方法 實體類命名一定要用駝峰才能分割成功
				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[] {});// 通過方法名得到對應的方法
				Object value = getMethod.invoke(t, new Object[] {});// 動態調用方法,得到屬性值
				if (value != null) {
					dataCell.setCellValue(value.toString());// 為當前列賦值
				}
			}
		}
		OutputStream outputStream = response.getOutputStream();// 打開流 
		wb.write(outputStream);// HSSFWorkbook寫入流 
		wb.close();// HSSFWorkbook關閉 
		outputStream.flush();// 刷新流 
		outputStream.close();// 關閉流 
		
		// excel 各種樣式
		// XSSFCellStyle.ALIGN_CENTER 居中對齊 
		// XSSFCellStyle.ALIGN_LEFT 左對齊 
		// XSSFCellStyle.ALIGN_RIGHT 右對齊 
		// XSSFCellStyle.VERTICAL_TOP 上對齊 
		// XSSFCellStyle.VERTICAL_CENTER 中對齊 
		// XSSFCellStyle.VERTICAL_BOTTOM 下對齊 
		// CellStyle.BORDER_DOUBLE 雙邊線 
		// CellStyle.BORDER_THIN 細邊線 
		// CellStyle.BORDER_MEDIUM 中等邊線 
		// CellStyle.BORDER_DASHED 虛線邊線 
		// CellStyle.BORDER_HAIR 小圓點虛線邊線 
		// CellStyle.BORDER_THICK 粗邊線 
		return wb;
	}
}

controller 層調用

/**
	 * 動態導出 excel (想導什么字段就傳固定格式的字段)
	 * 
	 * @param request
	 * @param response
	 * @param expor
	 * @throws Exception
	 */
	@RequestMapping("/excelOut")
	public void ExcelOut(HttpServletRequest request, HttpServletResponse response, String export) {
		export = "管理員#admin,id#id"; // ,手機號碼#adminPhone 只導出兩個字段
		String[] excelHeader = export.split(",");
		List<Tb_User> projectList = new ArrayList<Tb_User>();
		Tb_User tb_User = new Tb_User();
  // 模擬從數據庫查詢數據 查詢所有
		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("導出失敗!");
		}
	}

三個字段的實體類導出所需要的兩個字段數據

怎么在java中利用poi實現一個動態導出功能

補充知識:java使用poi導出excel的內容,同時可以利用反射進行動態獲取信息

一,Java-poi導出

我們很多人都是希望我們可以寫一個我們的Java導出的工具類,不需要用插件來實現,那下面就是我寫的一個Java導出工具類,話不多說開始。

首先我們針對的是maven項目,導入相應的依賴

<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>

導入了相應的依賴后,我們就可以進行相應的代碼編寫了,下面是我編寫的代碼,這里我們傳入的是泛型類。

public void getexport(Collection< T> dataset ,String[] headers , HttpServletResponse response , HttpServletRequest request ,String fileName){
  //創建一個excel文件,excel文檔對象
  HSSFWorkbook workbook= new HSSFWorkbook() ;
  //創建一個excel表單
  HSSFSheet sheet= workbook.createSheet(fileName) ;
  //設置單元格樣式1
  HSSFCellStyle cellStyle1=workbook.createCellStyle() ;
  //設置單元格居中
  cellStyle1.setAlignment(HSSFCellStyle. ALIGN_CENTER) ;
  //設置填充色
  cellStyle1.setFillPattern(HSSFCellStyle. SOLID_FOREGROUND) ;
  cellStyle1.setFillForegroundColor(HSSFColor.YELLOW. index) ;
  //設置邊框
  cellStyle1.setBorderLeft(HSSFCellStyle. BORDER_THIN) ;
  cellStyle1.setBorderRight(HSSFCellStyle. BORDER_THIN) ;
  cellStyle1.setBorderTop(HSSFCellStyle. BORDER_THIN) ;
  cellStyle1.setBorderBottom(HSSFCellStyle. BORDER_THIN) ;
  //設置單元格樣式2
  HSSFCellStyle cellStyle2=workbook.createCellStyle() ;
  //設置單元格居中
  cellStyle2.setAlignment(HSSFCellStyle. ALIGN_CENTER) ;
  //設置邊框
  cellStyle2.setBorderLeft(HSSFCellStyle. BORDER_THIN) ;
  cellStyle2.setBorderRight(HSSFCellStyle. BORDER_THIN) ;
  cellStyle2.setBorderTop(HSSFCellStyle. BORDER_THIN) ;
  cellStyle2.setBorderBottom(HSSFCellStyle. BORDER_THIN) ;
  //創建第一行,設置表頭
  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]) ;
  }
  //遍歷集合取出數據
  Iterator< T> it = dataset.iterator() ;
  int index = 0 ;
  while (it.hasNext()){
    index++ ;
    row = sheet.createRow(index) ;
    T t = ( T) it.next() ;
    // 利用反射,根據javabean屬性的先后順序,動態調用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) ;
      // 判斷值的類型后進行強制類型轉換
      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
      {
        // 其它數據類型都當作字符串簡單處理
        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實現一個動態導出功能了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

霍林郭勒市| 东宁县| 合水县| 美姑县| 财经| 行唐县| 泰兴市| 开封县| 山东省| 孟州市| 晋中市| 石河子市| 阆中市| 九江市| 克拉玛依市| 商南县| 治县。| 大余县| 乐昌市| 蓝田县| 新乐市| 巴彦淖尔市| 同德县| 敦化市| 南雄市| 璧山县| 纳雍县| 彭州市| 淅川县| 阜阳市| 晋中市| 扎兰屯市| 河北区| 云林县| 张家界市| 资源县| 海城市| 余庆县| 通榆县| 轮台县| 金堂县|