自己写的POIUtil,主要解决从不同的HSSFWorkbook复制sheet

import org.apache.poi.hssf.usermodel.*;
import org.apache.poi.ss.util.CellRangeAddress;

import java.util.ArrayList;
import java.util.List;

/**
 * Created with IntelliJ IDEA.
 * Author: Duelsol
 * Date: 14-7-18
 * Time: 下午4:05
 */
public class POIUtil {

	private POIUtil() {}

	/**
	 * 复制工作表
	 * 此方法主要用于复制2个不同HSSFWorkbook间的工作表
	 */
	public static void copySheet(HSSFWorkbook fromWorkbook, HSSFWorkbook toWorkbook, int fromSheetIndex, int toSheetIndex) {
		HSSFSheet fromSheet = fromWorkbook.getSheetAt(fromSheetIndex);
		for (int i = fromSheet.getFirstRowNum(); i <= fromSheet.getLastRowNum(); i++) {
			copyRows(fromWorkbook, toWorkbook, fromSheetIndex, toSheetIndex, i, i, i);
		}
	}

	/**
	 * 复制行
	 * 此方法主要用于复制2个不同HSSFWorkbook间的行
	 */
	public static void copyRows(HSSFWorkbook fromWorkbook, HSSFWorkbook toWorkbook, int fromSheetIndex, int toSheetIndex, int startRow, int endRow, int position) {
		HSSFSheet fromSheet = fromWorkbook.getSheetAt(fromSheetIndex);
		HSSFSheet toSheet = toWorkbook.getSheetAt(toSheetIndex);
		int i;
		int j;

		if ((startRow == -1) || (endRow == -1)) {
			return;
		}

		List<CellRangeAddress> oldRanges = new ArrayList<CellRangeAddress>();
		for (i = 0; i < fromSheet.getNumMergedRegions(); i++) {
			oldRanges.add(fromSheet.getMergedRegion(i));
		}

		// 拷贝合并的单元格。原理:复制当前合并单元格后,原位置的格式会移动到新位置,需在原位置生成旧格式
		for (CellRangeAddress oldRange : oldRanges) {
			CellRangeAddress newRange = new CellRangeAddress(oldRange.getFirstRow(), oldRange.getLastRow(),
					oldRange.getFirstColumn(), oldRange.getLastColumn());

			if (oldRange.getFirstRow() >= startRow && oldRange.getLastRow() <= endRow) {
				int targetRowFrom = oldRange.getFirstRow() - startRow + position;
				int targetRowTo = oldRange.getLastRow() - startRow + position;
				oldRange.setFirstRow(targetRowFrom);
				oldRange.setLastRow(targetRowTo);
				toSheet.addMergedRegion(oldRange);
				fromSheet.addMergedRegion(newRange);
			}
		}

		// 设置列宽
		for (i = startRow; i <= endRow; i++) {
			HSSFRow fromRow = fromSheet.getRow(i);
			if (fromRow != null) {
				for (j = fromRow.getLastCellNum(); j >= fromRow.getFirstCellNum(); j--) {
					toSheet.setColumnWidth(j, fromSheet.getColumnWidth(j));
					toSheet.setColumnHidden(j, false);
				}
				break;
			}
		}

		// 拷贝行并填充数据
		for (; i <= endRow; i++) {
			HSSFRow fromRow = fromSheet.getRow(i);
			if (fromRow == null) {
				continue;
			}
			HSSFRow toRow = toSheet.createRow(i - startRow + position);
			toRow.setHeight(fromRow.getHeight());
			for (j = fromRow.getFirstCellNum(); j <= fromRow.getPhysicalNumberOfCells(); j++) {
				HSSFCell fromCell = fromRow.getCell(j);
				if (fromCell == null) {
					continue;
				}
				HSSFCell toCell = toRow.createCell(j);
				HSSFCellStyle toStyle = toWorkbook.createCellStyle();
				copyCellStyle(fromWorkbook, toWorkbook, fromCell.getCellStyle(), toStyle);
				toCell.setCellStyle(toStyle);
				int cType = fromCell.getCellType();
				toCell.setCellType(cType);
				switch (cType) {
					case HSSFCell.CELL_TYPE_BOOLEAN:
						toCell.setCellValue(fromCell.getBooleanCellValue());
						// System.out.println("--------TYPE_BOOLEAN:" +
						// targetCell.getBooleanCellValue());
						break;
					case HSSFCell.CELL_TYPE_ERROR:
						toCell.setCellErrorValue(fromCell.getErrorCellValue());
						// System.out.println("--------TYPE_ERROR:" +
						// targetCell.getErrorCellValue());
						break;
					case HSSFCell.CELL_TYPE_FORMULA:
						toCell.setCellFormula(parseFormula(fromCell.getCellFormula()));
						// System.out.println("--------TYPE_FORMULA:" +
						// targetCell.getCellFormula());
						break;
					case HSSFCell.CELL_TYPE_NUMERIC:
						toCell.setCellValue(fromCell.getNumericCellValue());
						// System.out.println("--------TYPE_NUMERIC:" +
						// targetCell.getNumericCellValue());
						break;
					case HSSFCell.CELL_TYPE_STRING:
						toCell.setCellValue(fromCell.getRichStringCellValue());
						// System.out.println("--------TYPE_STRING:" + i +
						// targetCell.getRichStringCellValue());
						break;
				}
			}
		}
	}

	/**
	 * 复制行
	 * 如果是同一个HSSFWorkbook中的行请用此方法
	 */
	public static void copyRows(HSSFWorkbook workbook, int fromSheetIndex, int toSheetIndex, int startRow, int endRow, int position) {
		HSSFSheet fromSheet = workbook.getSheetAt(fromSheetIndex);
		HSSFSheet toSheet = workbook.getSheetAt(toSheetIndex);
		int i;
		int j;

		if ((startRow == -1) || (endRow == -1)) {
			return;
		}

		List<CellRangeAddress> oldRanges = new ArrayList<CellRangeAddress>();
		for (i = 0; i < fromSheet.getNumMergedRegions(); i++) {
			oldRanges.add(fromSheet.getMergedRegion(i));
		}

		// 拷贝合并的单元格。原理:复制当前合并单元格后,原位置的格式会移动到新位置,需在原位置生成旧格式
		for (CellRangeAddress oldRange : oldRanges) {
			CellRangeAddress newRange = new CellRangeAddress(oldRange.getFirstRow(), oldRange.getLastRow(),
					oldRange.getFirstColumn(), oldRange.getLastColumn());

			if (oldRange.getFirstRow() >= startRow && oldRange.getLastRow() <= endRow) {
				int targetRowFrom = oldRange.getFirstRow() - startRow + position;
				int targetRowTo = oldRange.getLastRow() - startRow + position;
				oldRange.setFirstRow(targetRowFrom);
				oldRange.setLastRow(targetRowTo);
				toSheet.addMergedRegion(oldRange);
				fromSheet.addMergedRegion(newRange);
			}
		}

		// 设置列宽
		for (i = startRow; i <= endRow; i++) {
			HSSFRow fromRow = fromSheet.getRow(i);
			if (fromRow != null) {
				for (j = fromRow.getLastCellNum(); j >= fromRow.getFirstCellNum(); j--) {
					toSheet.setColumnWidth(j, fromSheet.getColumnWidth(j));
					toSheet.setColumnHidden(j, false);
				}
				break;
			}
		}

		// 拷贝行并填充数据
		for (; i <= endRow; i++) {
			HSSFRow fromRow = fromSheet.getRow(i);
			if (fromRow == null) {
				continue;
			}
			HSSFRow toRow = toSheet.createRow(i - startRow + position);
			toRow.setHeight(fromRow.getHeight());
			for (j = fromRow.getFirstCellNum(); j <= fromRow.getPhysicalNumberOfCells(); j++) {
				HSSFCell fromCell = fromRow.getCell(j);
				if (fromCell == null) {
					continue;
				}
				HSSFCell toCell = toRow.createCell(j);
				toCell.setCellStyle(fromCell.getCellStyle());
				int cType = fromCell.getCellType();
				toCell.setCellType(cType);
				switch (cType) {
					case HSSFCell.CELL_TYPE_BOOLEAN:
						toCell.setCellValue(fromCell.getBooleanCellValue());
						// System.out.println("--------TYPE_BOOLEAN:" +
						// targetCell.getBooleanCellValue());
						break;
					case HSSFCell.CELL_TYPE_ERROR:
						toCell.setCellErrorValue(fromCell.getErrorCellValue());
						// System.out.println("--------TYPE_ERROR:" +
						// targetCell.getErrorCellValue());
						break;
					case HSSFCell.CELL_TYPE_FORMULA:
						toCell.setCellFormula(parseFormula(fromCell.getCellFormula()));
						// System.out.println("--------TYPE_FORMULA:" +
						// targetCell.getCellFormula());
						break;
					case HSSFCell.CELL_TYPE_NUMERIC:
						toCell.setCellValue(fromCell.getNumericCellValue());
						// System.out.println("--------TYPE_NUMERIC:" +
						// targetCell.getNumericCellValue());
						break;
					case HSSFCell.CELL_TYPE_STRING:
						toCell.setCellValue(fromCell.getRichStringCellValue());
						// System.out.println("--------TYPE_STRING:" + i +
						// targetCell.getRichStringCellValue());
						break;
				}
			}
		}
	}

	/**
	 * 复制单元格样式
	 * 此方法主要用于复制2个不同HSSFWorkbook间的单元格样式
	 */
	public static void copyCellStyle(HSSFWorkbook fromWorkbook, HSSFWorkbook toWorkbook, HSSFCellStyle fromStyle, HSSFCellStyle toStyle) {
		toStyle.setAlignment(fromStyle.getAlignment());

		// 边框和边框颜色
		toStyle.setBorderBottom(fromStyle.getBorderBottom());
		toStyle.setBorderLeft(fromStyle.getBorderLeft());
		toStyle.setBorderRight(fromStyle.getBorderRight());
		toStyle.setBorderTop(fromStyle.getBorderTop());
		toStyle.setTopBorderColor(fromStyle.getTopBorderColor());
		toStyle.setBottomBorderColor(fromStyle.getBottomBorderColor());
		toStyle.setRightBorderColor(fromStyle.getRightBorderColor());
		toStyle.setLeftBorderColor(fromStyle.getLeftBorderColor());

		// 字体
		HSSFFont tofont = toWorkbook.createFont();
		copyFont(fromStyle.getFont(fromWorkbook), tofont);
		toStyle.setFont(tofont);

		// 背景和前景
		toStyle.setFillBackgroundColor(fromStyle.getFillBackgroundColor());
		toStyle.setFillForegroundColor(fromStyle.getFillForegroundColor());

		toStyle.setDataFormat(fromStyle.getDataFormat());
		toStyle.setFillPattern(fromStyle.getFillPattern());
		toStyle.setHidden(fromStyle.getHidden());
		toStyle.setIndention(fromStyle.getIndention());
		toStyle.setLocked(fromStyle.getLocked());
		toStyle.setRotation(fromStyle.getRotation());
		toStyle.setVerticalAlignment(fromStyle.getVerticalAlignment());
		toStyle.setWrapText(fromStyle.getWrapText());
	}

	/**
	 * 复制字体
	 * 此方法主要用于复制2个不同HSSFWorkbook间的字体
	 */
	public static void copyFont(HSSFFont fromFont, HSSFFont toFont) {
		toFont.setBoldweight(fromFont.getBoldweight());
		toFont.setCharSet(fromFont.getCharSet());
		toFont.setColor(fromFont.getColor());
		toFont.setFontHeight(fromFont.getFontHeight());
		toFont.setFontHeightInPoints(fromFont.getFontHeightInPoints());
		toFont.setFontName(fromFont.getFontName());
		toFont.setItalic(fromFont.getItalic());
		toFont.setStrikeout(fromFont.getStrikeout());
		toFont.setTypeOffset(fromFont.getTypeOffset());
		toFont.setUnderline(fromFont.getUnderline());
	}

	private static String parseFormula(String pPOIFormula) {
		final String cstReplaceString = "ATTR(semiVolatile)"; //$NON-NLS-1$
		StringBuffer result;
		int index;

		result = new StringBuffer();
		index = pPOIFormula.indexOf(cstReplaceString);
		if (index >= 0) {
			result.append(pPOIFormula.substring(0, index));
			result.append(pPOIFormula.substring(index + cstReplaceString.length()));
		} else {
			result.append(pPOIFormula);
		}

		return result.toString();
	}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值