配置簡單功能強大的excel工具類搞定excel匯入匯出工具類(一)

天賦吉運李坤發表於2012-09-22

       對於J2EE專案匯入匯出Excel是最普通和實用功能,本工具類使用步驟簡單,功能強大,只需要對實體類進行簡單的註解就能實現匯入匯出功能,匯入匯出操作的都是實體物件.

請看一下這個類都有哪些功能:
      * 1.實體屬性配置了註解就能匯出到excel中,每個屬性都對應一列.
      * 2.列名稱可以通過註解配置.
      * 3.匯出到哪一列可以通過註解配置.
      * 4.滑鼠移動到該列時提示資訊可以通過註解配置.
      * 5.用註解設定只能下拉選擇不能隨意填寫功能.
      * 6.用註解設定是否只匯出標題而不匯出內容,這在匯出內容作為模板以供使用者填寫時比較實用.


請看一下效果圖:

 

 

請看一下使用步驟:

1.寫一個實體類,並設定註解配置.
2.例項化一個ExcelUtil<T>物件,呼叫exportExcel或importExcel方法.

請看一個demo.

1.寫一個實體類,並設定註解配置.

package com.tgb.lk.test03;

import com.tgb.lk.util.ExcelVOAttribute;

public class StudentVO {
	@ExcelVOAttribute(name = "序號", column = "A")
	private int id;

	@ExcelVOAttribute(name = "姓名", column = "B", isExport = true)
	private String name;

	@ExcelVOAttribute(name = "年齡", column = "C", prompt = "年齡保密哦!", isExport = false)
	private int age;

	@ExcelVOAttribute(name = "班級", column = "D", combo = { "五期提高班", "六期提高班",
			"七期提高班" })
	private String clazz;

	@ExcelVOAttribute(name = "公司", column = "F")
	private String company;

	//get和set方法(略)...

	@Override
	public String toString() {
		return "StudentVO [id=" + id + ", name=" + name + ", company="
				+ company + ", age=" + age + ", clazz=" + clazz + "]";
	}

}

2.例項化一個ExcelUtil<T>物件,呼叫exportExcel或importExcel方法.
(1)匯出

package com.tgb.lk.test03;

import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.util.ArrayList;
import java.util.List;

import com.tgb.lk.util.ExcelUtil;

/*
 * 使用步驟:
 * 1.新建一個類,例如StudentVO.
 * 2.設定哪些屬性需要匯出,哪些需要設定提示.
 * 3.設定實體資料
 * 4.呼叫exportExcel方法.
 */
public class ExportTest03 {
	public static void main(String[] args) {
		// 初始化資料
		List<StudentVO> list = new ArrayList<StudentVO>();

		StudentVO vo = new StudentVO();
		vo.setId(1);
		vo.setName("李坤");
		vo.setAge(26);
		vo.setClazz("五期提高班");
		vo.setCompany("天融信");
		list.add(vo);

		StudentVO vo2 = new StudentVO();
		vo2.setId(2);
		vo2.setName("曹貴生");
		vo2.setClazz("五期提高班");
		vo2.setCompany("中銀");
		list.add(vo2);

		StudentVO vo3 = new StudentVO();
		vo3.setId(3);
		vo3.setName("柳波");
		vo3.setClazz("五期提高班");
		list.add(vo3);

		FileOutputStream out = null;
		try {
			out = new FileOutputStream("d:\\success3.xls");
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		}
		ExcelUtil<StudentVO> util = new ExcelUtil<StudentVO>(StudentVO.class);// 建立工具類.
		util.exportExcel(list, "學生資訊", 65536, out);// 匯出
		System.out.println("----執行完畢----------");
	}

}

(2)匯入

package com.tgb.lk.test03;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.List;

import com.tgb.lk.util.ExcelUtil;

public class ImportTest03 {
	public static void main(String[] args) {
		FileInputStream fis = null;
		try {
			fis = new FileInputStream("d:\\success3.xls");
			ExcelUtil<StudentVO> util = new ExcelUtil<StudentVO>(
					StudentVO.class);// 建立excel工具類
			List<StudentVO> list = util.importExcel("學生資訊0", fis);// 匯入
			System.out.println(list);
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		}

	}
}

 

看完使用步驟一定對封裝的類迫不及待了吧,請繼續往下看:

(1)註解實現類:

package com.tgb.lk.util;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target( { java.lang.annotation.ElementType.FIELD })
public @interface ExcelVOAttribute {

	/**
	 * 匯出到Excel中的名字.
	 */
	public abstract String name();

	/**
	 * 配置列的名稱,對應A,B,C,D....
	 */
	public abstract String column();

	/**
	 * 提示資訊
	 */
	public abstract String prompt() default "";

	/**
	 * 設定只能選擇不能輸入的列內容.
	 */
	public abstract String[] combo() default {};

	/**
	 * 是否匯出資料,應對需求:有時我們需要匯出一份模板,這是標題需要但內容需要使用者手工填寫.
	 */
	public abstract boolean isExport() default true;

}

(2)匯入匯出封裝類:

package com.tgb.lk.util;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.poi.hssf.usermodel.DVConstraint;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFDataValidation;
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.util.CellRangeAddressList;

/*
 * ExcelUtil工具類實現功能:
 * 匯出時傳入list<T>,即可實現匯出為一個excel,其中每個物件T為Excel中的一條記錄.
 * 匯入時讀取excel,得到的結果是一個list<T>.T是自己定義的物件.
 * 需要匯出的實體物件只需簡單配置註解就能實現靈活匯出,通過註解您可以方便實現下面功能:
 * 1.實體屬性配置了註解就能匯出到excel中,每個屬性都對應一列.
 * 2.列名稱可以通過註解配置.
 * 3.匯出到哪一列可以通過註解配置.
 * 4.滑鼠移動到該列時提示資訊可以通過註解配置.
 * 5.用註解設定只能下拉選擇不能隨意填寫功能.
 * 6.用註解設定是否只匯出標題而不匯出內容,這在匯出內容作為模板以供使用者填寫時比較實用.
 * 本工具類以後可能還會加功能,請關注我的部落格: http://blog.csdn.net/lk_blog
 */
public class ExcelUtil<T> {
	Class<T> clazz;

	public ExcelUtil(Class<T> clazz) {
		this.clazz = clazz;
	}

	public List<T> importExcel(String sheetName, InputStream input) {
		List<T> list = new ArrayList<T>();
		try {
			HSSFWorkbook workbook = new HSSFWorkbook(input);
			HSSFSheet sheet = workbook.getSheet(sheetName);
			if (!sheetName.trim().equals("")) {
				sheet = workbook.getSheet(sheetName);// 如果指定sheet名,則取指定sheet中的內容.
			}
			if (sheet == null) {
				sheet = workbook.getSheetAt(0); // 如果傳入的sheet名不存在則預設指向第1個sheet.
			}
			int rows = sheet.getPhysicalNumberOfRows();

			if (rows > 0) {// 有資料時才處理
				Field[] allFields = clazz.getDeclaredFields();// 得到類的所有field.
				Map<Integer, Field> fieldsMap = new HashMap<Integer, Field>();// 定義一個map用於存放列的序號和field.
				for (Field field : allFields) {
					// 將有註解的field存放到map中.
					if (field.isAnnotationPresent(ExcelVOAttribute.class)) {
						ExcelVOAttribute attr = field
								.getAnnotation(ExcelVOAttribute.class);
						int col = getExcelCol(attr.column());// 獲得列號
						// System.out.println(col + "====" + field.getName());
						field.setAccessible(true);// 設定類的私有欄位屬性可訪問.
						fieldsMap.put(col, field);
					}
				}
				for (int i = 1; i < rows; i++) {// 從第2行開始取資料,預設第一行是表頭.
					HSSFRow row = sheet.getRow(i);
					int cellNum = row.getPhysicalNumberOfCells();
					T entity = null;
					for (int j = 0; j < cellNum; j++) {
						HSSFCell cell = row.getCell(j);
						if (cell == null) {
							continue;
						}
						String c = cell.getStringCellValue();
						System.out.println(c);
						if (c.equals("")) {
							continue;
						}
						entity = (entity == null ? clazz.newInstance() : entity);// 如果不存在例項則新建.
						// System.out.println(cells[j].getContents());
						Field field = fieldsMap.get(j);// 從map中得到對應列的field.
						// 取得型別,並根據物件型別設定值.
						Class<?> fieldType = field.getType();
						if (String.class == fieldType) {
							field.set(entity, String.valueOf(c));
						} else if ((Integer.TYPE == fieldType)
								|| (Integer.class == fieldType)) {
							field.set(entity, Integer.parseInt(c));
						} else if ((Long.TYPE == fieldType)
								|| (Long.class == fieldType)) {
							field.set(entity, Long.valueOf(c));
						} else if ((Float.TYPE == fieldType)
								|| (Float.class == fieldType)) {
							field.set(entity, Float.valueOf(c));
						} else if ((Short.TYPE == fieldType)
								|| (Short.class == fieldType)) {
							field.set(entity, Short.valueOf(c));
						} else if ((Double.TYPE == fieldType)
								|| (Double.class == fieldType)) {
							field.set(entity, Double.valueOf(c));
						} else if (Character.TYPE == fieldType) {
							if ((c != null) && (c.length() > 0)) {
								field.set(entity, Character
										.valueOf(c.charAt(0)));
							}
						}

					}
					if (entity != null) {
						list.add(entity);
					}
				}
				//以下內容為引用jxl-xx.jar時的程式碼,因為jxl對office2010不支援,所以改為使用poi讀寫方式.
				// HSSFRow[] cells = sheet.getRow(i); // 得到一行中的所有單元格物件.
				// T entity = null;
				// for (int j = 0; j < cells.length; j++) {
				// String c = cells[j].getContents();// 單元格中的內容.
				// if (c.equals("")) {
				// continue;
				// }
				// entity = (entity == null ? clazz.newInstance() : entity);//
				// 如果不存在例項則新建.
				// // System.out.println(cells[j].getContents());
				// Field field = fieldsMap.get(j);// 從map中得到對應列的field.
				// // 取得型別,並根據物件型別設定值.
				// Class<?> fieldType = field.getType();
				// if ((Integer.TYPE == fieldType)
				// || (Integer.class == fieldType)) {
				// field.set(entity, Integer.parseInt(c));
				// } else if (String.class == fieldType) {
				// field.set(entity, String.valueOf(c));
				// } else if ((Long.TYPE == fieldType)
				// || (Long.class == fieldType)) {
				// field.set(entity, Long.valueOf(c));
				// } else if ((Float.TYPE == fieldType)
				// || (Float.class == fieldType)) {
				// field.set(entity, Float.valueOf(c));
				// } else if ((Short.TYPE == fieldType)
				// || (Short.class == fieldType)) {
				// field.set(entity, Short.valueOf(c));
				// } else if ((Double.TYPE == fieldType)
				// || (Double.class == fieldType)) {
				// field.set(entity, Double.valueOf(c));
				// } else if (Character.TYPE == fieldType) {
				// if ((c != null) && (c.length() > 0)) {
				// field.set(entity, Character
				// .valueOf(c.charAt(0)));
				// }
				// }
				//
				// }
				// if (entity != null) {
				// list.add(entity);
				// }
				// }
			}

		} catch (IOException e) {
			e.printStackTrace();
		} catch (InstantiationException e) {
			e.printStackTrace();
		} catch (IllegalAccessException e) {
			e.printStackTrace();
		} catch (IllegalArgumentException e) {
			e.printStackTrace();
		}
		return list;
	}

	/**
	 * 對list資料來源將其裡面的資料匯入到excel表單
	 * 
	 * @param sheetName
	 *            工作表的名稱
	 * @param sheetSize
	 *            每個sheet中資料的行數,此數值必須小於65536
	 * @param output
	 *            java輸出流
	 */
	public boolean exportExcel(List<T> list, String sheetName, int sheetSize,
			OutputStream output) {

		Field[] allFields = clazz.getDeclaredFields();// 得到所有定義欄位
		List<Field> fields = new ArrayList<Field>();
		// 得到所有field並存放到一個list中.
		for (Field field : allFields) {
			if (field.isAnnotationPresent(ExcelVOAttribute.class)) {
				fields.add(field);
			}
		}

		HSSFWorkbook workbook = new HSSFWorkbook();// 產生工作薄物件

		// excel2003中每個sheet中最多有65536行,為避免產生錯誤所以加這個邏輯.
		if (sheetSize > 65536 || sheetSize < 1) {
			sheetSize = 65536;
		}
		double sheetNo = Math.ceil(list.size() / sheetSize);// 取出一共有多少個sheet.
		for (int index = 0; index <= sheetNo; index++) {
			HSSFSheet sheet = workbook.createSheet();// 產生工作表物件
			if (sheetNo == 0) {
				workbook.setSheetName(index, sheetName);
			} else {
				workbook.setSheetName(index, sheetName + index);// 設定工作表的名稱.
			}
			HSSFRow row;
			HSSFCell cell;// 產生單元格

			row = sheet.createRow(0);// 產生一行
			// 寫入各個欄位的列頭名稱
			for (int i = 0; i < fields.size(); i++) {
				Field field = fields.get(i);
				ExcelVOAttribute attr = field
						.getAnnotation(ExcelVOAttribute.class);
				int col = getExcelCol(attr.column());// 獲得列號
				cell = row.createCell(col);// 建立列
				cell.setCellType(HSSFCell.CELL_TYPE_STRING);// 設定列中寫入內容為String型別
				cell.setCellValue(attr.name());// 寫入列名

				// 如果設定了提示資訊則滑鼠放上去提示.
				if (!attr.prompt().trim().equals("")) {
					setHSSFPrompt(sheet, "", attr.prompt(), 1, 100, col, col);// 這裡預設設了2-101列提示.
				}
				// 如果設定了combo屬性則本列只能選擇不能輸入
				if (attr.combo().length > 0) {
					setHSSFValidation(sheet, attr.combo(), 1, 100, col, col);// 這裡預設設了2-101列只能選擇不能輸入.
				}
			}

			int startNo = index * sheetSize;
			int endNo = Math.min(startNo + sheetSize, list.size());
			// 寫入各條記錄,每條記錄對應excel表中的一行
			for (int i = startNo; i < endNo; i++) {
				row = sheet.createRow(i + 1 - startNo);
				T vo = (T) list.get(i); // 得到匯出物件.
				for (int j = 0; j < fields.size(); j++) {
					Field field = fields.get(j);// 獲得field.
					field.setAccessible(true);// 設定實體類私有屬性可訪問
					ExcelVOAttribute attr = field
							.getAnnotation(ExcelVOAttribute.class);
					try {
						// 根據ExcelVOAttribute中設定情況決定是否匯出,有些情況需要保持為空,希望使用者填寫這一列.
						if (attr.isExport()) {
							cell = row.createCell(getExcelCol(attr.column()));// 建立cell
							cell.setCellType(HSSFCell.CELL_TYPE_STRING);
							cell.setCellValue(field.get(vo) == null ? ""
									: String.valueOf(field.get(vo)));// 如果資料存在就填入,不存在填入空格.
						}
					} catch (IllegalArgumentException e) {
						e.printStackTrace();
					} catch (IllegalAccessException e) {
						e.printStackTrace();
					}
				}
			}

		}
		try {
			output.flush();
			workbook.write(output);
			output.close();
			return true;
		} catch (IOException e) {
			e.printStackTrace();
			System.out.println("Output is closed ");
			return false;
		}

	}

	/**
	 * 將EXCEL中A,B,C,D,E列對映成0,1,2,3
	 * 
	 * @param col
	 */
	public static int getExcelCol(String col) {
		col = col.toUpperCase();
		// 從-1開始計算,字母重1開始運算。這種總數下來算數正好相同。
		int count = -1;
		char[] cs = col.toCharArray();
		for (int i = 0; i < cs.length; i++) {
			count += (cs[i] - 64) * Math.pow(26, cs.length - 1 - i);
		}
		return count;
	}

	/**
	 * 設定單元格上提示
	 * 
	 * @param sheet
	 *            要設定的sheet.
	 * @param promptTitle
	 *            標題
	 * @param promptContent
	 *            內容
	 * @param firstRow
	 *            開始行
	 * @param endRow
	 *            結束行
	 * @param firstCol
	 *            開始列
	 * @param endCol
	 *            結束列
	 * @return 設定好的sheet.
	 */
	public static HSSFSheet setHSSFPrompt(HSSFSheet sheet, String promptTitle,
			String promptContent, int firstRow, int endRow, int firstCol,
			int endCol) {
		// 構造constraint物件
		DVConstraint constraint = DVConstraint
				.createCustomFormulaConstraint("DD1");
		// 四個引數分別是:起始行、終止行、起始列、終止列
		CellRangeAddressList regions = new CellRangeAddressList(firstRow,
				endRow, firstCol, endCol);
		// 資料有效性物件
		HSSFDataValidation data_validation_view = new HSSFDataValidation(
				regions, constraint);
		data_validation_view.createPromptBox(promptTitle, promptContent);
		sheet.addValidationData(data_validation_view);
		return sheet;
	}

	/**
	 * 設定某些列的值只能輸入預製的資料,顯示下拉框.
	 * 
	 * @param sheet
	 *            要設定的sheet.
	 * @param textlist
	 *            下拉框顯示的內容
	 * @param firstRow
	 *            開始行
	 * @param endRow
	 *            結束行
	 * @param firstCol
	 *            開始列
	 * @param endCol
	 *            結束列
	 * @return 設定好的sheet.
	 */
	public static HSSFSheet setHSSFValidation(HSSFSheet sheet,
			String[] textlist, int firstRow, int endRow, int firstCol,
			int endCol) {
		// 載入下拉選單內容
		DVConstraint constraint = DVConstraint
				.createExplicitListConstraint(textlist);
		// 設定資料有效性載入在哪個單元格上,四個引數分別是:起始行、終止行、起始列、終止列
		CellRangeAddressList regions = new CellRangeAddressList(firstRow,
				endRow, firstCol, endCol);
		// 資料有效性物件
		HSSFDataValidation data_validation_list = new HSSFDataValidation(
				regions, constraint);
		sheet.addValidationData(data_validation_list);
		return sheet;
	}
}

工具類修訂版(2013-10-23):

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.poi.hssf.usermodel.DVConstraint;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFDataValidation;
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;
import org.apache.poi.ss.util.CellRangeAddressList;

/*
 * ExcelUtil工具類實現功能:
 * 匯出時傳入list<T>,即可實現匯出為一個excel,其中每個物件T為Excel中的一條記錄.
 * 匯入時讀取excel,得到的結果是一個list<T>.T是自己定義的物件.
 * 需要匯出的實體物件只需簡單配置註解就能實現靈活匯出,通過註解您可以方便實現下面功能:
 * 1.實體屬性配置了註解就能匯出到excel中,每個屬性都對應一列.
 * 2.列名稱可以通過註解配置.
 * 3.匯出到哪一列可以通過註解配置.
 * 4.滑鼠移動到該列時提示資訊可以通過註解配置.
 * 5.用註解設定只能下拉選擇不能隨意填寫功能.
 * 6.用註解設定是否只匯出標題而不匯出內容,這在匯出內容作為模板以供使用者填寫時比較實用.
 * 本工具類以後可能還會加功能,請關注我的部落格: http://blog.csdn.net/lk_blog
 */
public class ExcelUtil2<T> {
	Class<T> clazz;

	public ExcelUtil2(Class<T> clazz) {
		this.clazz = clazz;
	}

	public List<T> importExcel(String sheetName, InputStream input) {
		int maxCol = 0;
		List<T> list = new ArrayList<T>();
		try {
			HSSFWorkbook workbook = new HSSFWorkbook(input);
			HSSFSheet sheet = workbook.getSheet(sheetName);
			if (!sheetName.trim().equals("")) {
				sheet = workbook.getSheet(sheetName);// 如果指定sheet名,則取指定sheet中的內容.
			}
			if (sheet == null) {
				sheet = workbook.getSheetAt(0); // 如果傳入的sheet名不存在則預設指向第1個sheet.
			}
			int rows = sheet.getPhysicalNumberOfRows();

			if (rows > 0) {// 有資料時才處理
				// Field[] allFields = clazz.getDeclaredFields();// 得到類的所有field.
				List<Field> allFields = getMappedFiled(clazz, null);

				Map<Integer, Field> fieldsMap = new HashMap<Integer, Field>();// 定義一個map用於存放列的序號和field.
				for (Field field : allFields) {
					// 將有註解的field存放到map中.
					if (field.isAnnotationPresent(ExcelVOAttribute.class)) {
						ExcelVOAttribute attr = field
								.getAnnotation(ExcelVOAttribute.class);
						int col = getExcelCol(attr.column());// 獲得列號
						maxCol = Math.max(col, maxCol);
						// System.out.println(col + "====" + field.getName());
						field.setAccessible(true);// 設定類的私有欄位屬性可訪問.
						fieldsMap.put(col, field);
					}
				}
				for (int i = 1; i < rows; i++) {// 從第2行開始取資料,預設第一行是表頭.
					HSSFRow row = sheet.getRow(i);
					// int cellNum = row.getPhysicalNumberOfCells();
					// int cellNum = row.getLastCellNum();
					int cellNum = maxCol;
					T entity = null;
					for (int j = 0; j < cellNum; j++) {
						HSSFCell cell = row.getCell(j);
						if (cell == null) {
							continue;
						}
						int cellType = cell.getCellType();
						String c = "";
						if (cellType == HSSFCell.CELL_TYPE_NUMERIC) {
							c = String.valueOf(cell.getNumericCellValue());
						} else if (cellType == HSSFCell.CELL_TYPE_BOOLEAN) {
							c = String.valueOf(cell.getBooleanCellValue());
						} else {
							c = cell.getStringCellValue();
						}
						if (c == null || c.equals("")) {
							continue;
						}
						entity = (entity == null ? clazz.newInstance() : entity);// 如果不存在例項則新建.
						// System.out.println(cells[j].getContents());
						Field field = fieldsMap.get(j);// 從map中得到對應列的field.
						if (field==null) {
							continue;
						}
						// 取得型別,並根據物件型別設定值.
						Class<?> fieldType = field.getType();
						if (String.class == fieldType) {
							field.set(entity, String.valueOf(c));
						} else if ((Integer.TYPE == fieldType)
								|| (Integer.class == fieldType)) {
							field.set(entity, Integer.parseInt(c));
						} else if ((Long.TYPE == fieldType)
								|| (Long.class == fieldType)) {
							field.set(entity, Long.valueOf(c));
						} else if ((Float.TYPE == fieldType)
								|| (Float.class == fieldType)) {
							field.set(entity, Float.valueOf(c));
						} else if ((Short.TYPE == fieldType)
								|| (Short.class == fieldType)) {
							field.set(entity, Short.valueOf(c));
						} else if ((Double.TYPE == fieldType)
								|| (Double.class == fieldType)) {
							field.set(entity, Double.valueOf(c));
						} else if (Character.TYPE == fieldType) {
							if ((c != null) && (c.length() > 0)) {
								field.set(entity, Character
										.valueOf(c.charAt(0)));
							}
						}

					}
					if (entity != null) {
						list.add(entity);
					}
				}
			}

		} catch (IOException e) {
			e.printStackTrace();
		} catch (InstantiationException e) {
			e.printStackTrace();
		} catch (IllegalAccessException e) {
			e.printStackTrace();
		} catch (IllegalArgumentException e) {
			e.printStackTrace();
		}
		return list;
	}

	/**
	 * 對list資料來源將其裡面的資料匯入到excel表單
	 * 
	 * @param sheetName
	 *            工作表的名稱
	 * @param output
	 *            java輸出流
	 */
	public boolean exportExcel(List<T> lists[], String sheetNames[],
			OutputStream output) {
		if (lists.length != sheetNames.length) {
			System.out.println("陣列長度不一致");
			return false;
		}

		HSSFWorkbook workbook = new HSSFWorkbook();// 產生工作薄物件

		for (int ii = 0; ii < lists.length; ii++) {
			List<T> list = lists[ii];
			String sheetName = sheetNames[ii];

			List<Field> fields = getMappedFiled(clazz, null);

			HSSFSheet sheet = workbook.createSheet();// 產生工作表物件

			workbook.setSheetName(ii, sheetName);

			HSSFRow row;
			HSSFCell cell;// 產生單元格
			HSSFCellStyle style = workbook.createCellStyle();
			style.setFillForegroundColor(HSSFColor.SKY_BLUE.index);
			style.setFillBackgroundColor(HSSFColor.GREY_40_PERCENT.index);
			row = sheet.createRow(0);// 產生一行
			// 寫入各個欄位的列頭名稱
			for (int i = 0; i < fields.size(); i++) {
				Field field = fields.get(i);
				ExcelVOAttribute attr = field
						.getAnnotation(ExcelVOAttribute.class);
				int col = getExcelCol(attr.column());// 獲得列號
				cell = row.createCell(col);// 建立列
				cell.setCellType(HSSFCell.CELL_TYPE_STRING);// 設定列中寫入內容為String型別
				cell.setCellValue(attr.name());// 寫入列名

				// 如果設定了提示資訊則滑鼠放上去提示.
				if (!attr.prompt().trim().equals("")) {
					setHSSFPrompt(sheet, "", attr.prompt(), 1, 100, col, col);// 這裡預設設了2-101列提示.
				}
				// 如果設定了combo屬性則本列只能選擇不能輸入
				if (attr.combo().length > 0) {
					setHSSFValidation(sheet, attr.combo(), 1, 100, col, col);// 這裡預設設了2-101列只能選擇不能輸入.
				}
				cell.setCellStyle(style);
			}

			int startNo = 0;
			int endNo = list.size();
			// 寫入各條記錄,每條記錄對應excel表中的一行
			for (int i = startNo; i < endNo; i++) {
				row = sheet.createRow(i + 1 - startNo);
				T vo = (T) list.get(i); // 得到匯出物件.
				for (int j = 0; j < fields.size(); j++) {
					Field field = fields.get(j);// 獲得field.
					field.setAccessible(true);// 設定實體類私有屬性可訪問
					ExcelVOAttribute attr = field
							.getAnnotation(ExcelVOAttribute.class);
					try {
						// 根據ExcelVOAttribute中設定情況決定是否匯出,有些情況需要保持為空,希望使用者填寫這一列.
						if (attr.isExport()) {
							cell = row.createCell(getExcelCol(attr.column()));// 建立cell
							cell.setCellType(HSSFCell.CELL_TYPE_STRING);
							cell.setCellValue(field.get(vo) == null ? ""
									: String.valueOf(field.get(vo)));// 如果資料存在就填入,不存在填入空格.
						}
					} catch (IllegalArgumentException e) {
						e.printStackTrace();
					} catch (IllegalAccessException e) {
						e.printStackTrace();
					}
				}
			}
		}

		try {
			output.flush();
			workbook.write(output);
			output.close();
			return true;
		} catch (IOException e) {
			e.printStackTrace();
			System.out.println("Output is closed ");
			return false;
		}

	}

	/**
	 * 對list資料來源將其裡面的資料匯入到excel表單
	 * 
	 * @param sheetName
	 *            工作表的名稱
	 * @param sheetSize
	 *            每個sheet中資料的行數,此數值必須小於65536
	 * @param output
	 *            java輸出流
	 */
	public boolean exportExcel(List<T> list, String sheetName,
			OutputStream output) {
		List<T>[] lists = new ArrayList[1];
		lists[0] = list;

		String[] sheetNames = new String[1];
		sheetNames[0] = sheetName;

		return exportExcel(lists, sheetNames, output);
	}

	/**
	 * 將EXCEL中A,B,C,D,E列對映成0,1,2,3
	 * 
	 * @param col
	 */
	public static int getExcelCol(String col) {
		col = col.toUpperCase();
		// 從-1開始計算,字母重1開始運算。這種總數下來算數正好相同。
		int count = -1;
		char[] cs = col.toCharArray();
		for (int i = 0; i < cs.length; i++) {
			count += (cs[i] - 64) * Math.pow(26, cs.length - 1 - i);
		}
		return count;
	}

	/**
	 * 設定單元格上提示
	 * 
	 * @param sheet
	 *            要設定的sheet.
	 * @param promptTitle
	 *            標題
	 * @param promptContent
	 *            內容
	 * @param firstRow
	 *            開始行
	 * @param endRow
	 *            結束行
	 * @param firstCol
	 *            開始列
	 * @param endCol
	 *            結束列
	 * @return 設定好的sheet.
	 */
	public static HSSFSheet setHSSFPrompt(HSSFSheet sheet, String promptTitle,
			String promptContent, int firstRow, int endRow, int firstCol,
			int endCol) {
		// 構造constraint物件
		DVConstraint constraint = DVConstraint
				.createCustomFormulaConstraint("DD1");
		// 四個引數分別是:起始行、終止行、起始列、終止列
		CellRangeAddressList regions = new CellRangeAddressList(firstRow,
				endRow, firstCol, endCol);
		// 資料有效性物件
		HSSFDataValidation data_validation_view = new HSSFDataValidation(
				regions, constraint);
		data_validation_view.createPromptBox(promptTitle, promptContent);
		sheet.addValidationData(data_validation_view);
		return sheet;
	}

	/**
	 * 設定某些列的值只能輸入預製的資料,顯示下拉框.
	 * 
	 * @param sheet
	 *            要設定的sheet.
	 * @param textlist
	 *            下拉框顯示的內容
	 * @param firstRow
	 *            開始行
	 * @param endRow
	 *            結束行
	 * @param firstCol
	 *            開始列
	 * @param endCol
	 *            結束列
	 * @return 設定好的sheet.
	 */
	public static HSSFSheet setHSSFValidation(HSSFSheet sheet,
			String[] textlist, int firstRow, int endRow, int firstCol,
			int endCol) {
		// 載入下拉選單內容
		DVConstraint constraint = DVConstraint
				.createExplicitListConstraint(textlist);
		// 設定資料有效性載入在哪個單元格上,四個引數分別是:起始行、終止行、起始列、終止列
		CellRangeAddressList regions = new CellRangeAddressList(firstRow,
				endRow, firstCol, endCol);
		// 資料有效性物件
		HSSFDataValidation data_validation_list = new HSSFDataValidation(
				regions, constraint);
		sheet.addValidationData(data_validation_list);
		return sheet;
	}

	/**
	 * 得到實體類所有通過註解對映了資料表的欄位
	 * 
	 * @param map
	 * @return
	 */
	private List<Field> getMappedFiled(Class clazz, List<Field> fields) {
		if (fields == null) {
			fields = new ArrayList<Field>();
		}

		Field[] allFields = clazz.getDeclaredFields();// 得到所有定義欄位
		// 得到所有field並存放到一個list中.
		for (Field field : allFields) {
			if (field.isAnnotationPresent(ExcelVOAttribute.class)) {
				fields.add(field);
			}
		}
		if (clazz.getSuperclass() != null
				&& !clazz.getSuperclass().equals(Object.class)) {
			getMappedFiled(clazz.getSuperclass(), fields);
		}

		return fields;
	}
}





您是否有這樣的需求呢:
1.實體類中存放的值是一個編碼,而匯出的檔案中需要把編碼轉成有意義的文字.例如:實體類中性別用0,1表示,而希望匯出的excel檔案中是"男","女".
2.想對匯入的內容加一些邏輯,例如:判斷某些值不能為空.或判斷年齡不能小於0且不能大於100.

這篇文章寫的有點長了,上述需求實現請看下篇文章: http://blog.csdn.net/lk_blog/article/details/8007837

 

實現一個配置簡單功能強大的excel工具類搞定excel匯入匯出
http://blog.csdn.net/lk_blog/article/details/8007777
http://blog.csdn.net/lk_blog/article/details/8007837

 

 程式碼下載: http://download.csdn.net/detail/lk_blog/4588280

      限於本人水平有限,很多地方寫的並不完美,希望大家不吝賜教.如果覺得本文對您有幫助請頂支援一下,如果有不足之處歡迎留言交流,希望在和大家的交流中得到提高.

相關文章