使用java程序生成excel文檔程序

package com.itheima.utils;

import java.beans.PropertyDescriptor;
import java.io.IOException;
import java.io.OutputStream;
import java.text.SimpleDateFormat;
import java.util.Collection;
import java.util.Date;

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.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.Font;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;

public class ExportExcelUtils {

	
	/**
	 * @param title:excel文件名稱
	 * @param headers:表頭
	 * @param dataset:要保存到表格的對象集合
	 * @param attrList:對象要保存的屬性
	 * @param out:輸出目的地
	 */
	public static void exportExcel(String title, String[] headers, Collection dataset,String attrList[], OutputStream out) {
		
		// 聲明一個工作薄
		Workbook workbook = new HSSFWorkbook();
		
		// 生成一個表格
		Sheet sheet = workbook.createSheet(title);
		
		// 設置表格默認列寬度爲15
		sheet.setDefaultColumnWidth((short) 15);
		
		// 產生表頭
		Row row = sheet.createRow(0);
		
		//插入表頭數據
		for (short i = 0; i < headers.length; i++) {
			Cell cell = row.createCell(i);
			//設置樣式
			cell.setCellStyle(createHeaderStyle(workbook));
			HSSFRichTextString text = new HSSFRichTextString(headers[i]);
			cell.setCellValue(text);
		}

		int index = 1;
		for(Object bean : dataset){
			//得到一個bean,則生成表格的一行
			row = sheet.createRow(index++);
			for(int i=0;i<attrList.length;i++){
				PropertyDescriptor pd = null;
				try{
					pd = new PropertyDescriptor(attrList[i],bean.getClass());
				}catch (Exception e) {
					throw new RuntimeException("bean中沒有屬性:" + attrList[i]);
				}
				
				//得到bean的屬性值
				Object attrValue = null;
				try {
					attrValue = pd.getReadMethod().invoke(bean, null);
				} catch (Exception e) {
					throw new RuntimeException("無法獲取bean的屬性值:" + pd.getName());
				} 
				
				//轉成字符串
				String cellValue = "";
				if(attrValue instanceof Date){
					SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
					df.format(attrValue);
				}else{
					if(attrValue!=null){
						cellValue = attrValue.toString();
					}
				}
				
				Cell cell = row.createCell(i);
				cell.setCellStyle(createDataStyle(workbook));
				cell.setCellValue(cellValue);
			}
		}
		try {
			workbook.write(out);
		} catch (IOException e) {	
			throw new RuntimeException(e);
		}
	}
	
	private static CellStyle createHeaderStyle(Workbook workbook){
		// 生成一個樣式
		CellStyle style = workbook.createCellStyle();

		// 設置表頭的樣式
		style.setFillForegroundColor(HSSFColor.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);

		// 生成表頭的字體
		Font font = workbook.createFont();
		font.setColor(HSSFColor.VIOLET.index);
		font.setFontHeightInPoints((short) 12);
		font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
		// 把字體應用到當前的樣式
		style.setFont(font);
		return style;
	}
	
	private static CellStyle createDataStyle(Workbook workbook){
		
		// 生成數據行的樣式
		CellStyle style = workbook.createCellStyle();
		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);
		style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
		// 生成數據行的字體
		Font font = workbook.createFont();
		font.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);
		// 把字體應用到當前的樣式
		style.setFont(font);
		return style;
	}

}

所需的jar包在,請下載放在類路徑下

點擊打開鏈接

發佈了34 篇原創文章 · 獲贊 9 · 訪問量 4萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章