合并多个Execl 电子表格 java poi

简介: 本篇容记录了合并多个Execl 电子表格 的编写代码。

编写代码为:


package com.weichai;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.util.Iterator;
import org.apache.poi.ss.usermodel.DateUtil;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFCellStyle;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class Test {
  public static void main(String[] args) throws Exception {
    // TODO Auto-generated method stub
    // 将所有类型的尽调excel文件合并成一个excel文件
    String Path = "D:\\ExcelTest";
    File file = new File(Path);
    File[] tempList = file.listFiles();
    String TmpList [] = new String [2];
    System.out.println("该目录下对象个数:" + tempList.length);
    for (int i = 0; i < tempList.length; i++) {
      if (tempList[i].isFile()) {
        TmpList[i] = tempList[i].toString();
        System.out.println("文件:"+TmpList[i]+" 待处理");
      }
    }
    XSSFWorkbook newExcelCreat = new XSSFWorkbook();
    for (String fromExcelName : TmpList) {    // 遍历每个源excel文件,TmpList为源文件的名称集合
      InputStream in = new FileInputStream(fromExcelName);
      XSSFWorkbook fromExcel = new XSSFWorkbook(in);
      int length = fromExcel.getNumberOfSheets();
      if(length<=1){       //长度为1时
        XSSFSheet oldSheet = fromExcel.getSheetAt(0);
        XSSFSheet newSheet = newExcelCreat.createSheet(oldSheet.getSheetName());
          copySheet(newExcelCreat, oldSheet, newSheet);
      }else{
        for (int i = 0; i < length; i++) {// 遍历每个sheet
          XSSFSheet oldSheet = fromExcel.getSheetAt(i);
          XSSFSheet newSheet = newExcelCreat.createSheet(oldSheet.getSheetName());
          copySheet(newExcelCreat, oldSheet, newSheet);
        }
      }
    }
    String allFileName = Path+ "\\New.xlsx";    //定义新生成的xlx表格文件
    FileOutputStream fileOut = new FileOutputStream(allFileName);
    newExcelCreat.write(fileOut);
    fileOut.flush();
    fileOut.close();
//    // 删除各个源文件
//    for (String fromExcelName : TmpList) {// 遍历每个源excel文件
//      File Existfile = new File(fromExcelName);
//      if (Existfile.exists()) {
//        Existfile.delete();
//      }
//    }
    System.out.println("运行结束!");
  }
  public static void copyCellStyle(XSSFCellStyle fromStyle, XSSFCellStyle toStyle) {
    toStyle.cloneStyleFrom(fromStyle);// 此一行代码搞定
    // 下面统统不用
    /*
     * //对齐方式 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()); //背景和前景
     * //toStyle.setFillPattern(fromStyle.getFillPattern());
     * //填充图案,不起作用,转为黑色
     * toStyle.setFillBackgroundColor(fromStyle.getFillBackgroundColor());
     * //不起作用
     * toStyle.setFillForegroundColor(fromStyle.getFillForegroundColor());
     * toStyle.setDataFormat(fromStyle.getDataFormat()); //数据格式
     * //toStyle.setFont(fromStyle.getFont()); //不起作用
     * toStyle.setHidden(fromStyle.getHidden());
     * toStyle.setIndention(fromStyle.getIndention());//首行缩进
     * toStyle.setLocked(fromStyle.getLocked());
     * toStyle.setRotation(fromStyle.getRotation());//旋转
     * toStyle.setVerticalAlignment(fromStyle.getVerticalAlignment());
     * //垂直对齐 toStyle.setWrapText(fromStyle.getWrapText()); //文本换行
     */
  }
  /**
   * 合并单元格
   * @param fromSheet
   * @param toSheet
   */
  public static void mergeSheetAllRegion(XSSFSheet fromSheet, XSSFSheet toSheet) {
    int num = fromSheet.getNumMergedRegions();
    CellRangeAddress cellR = null;
    for (int i = 0; i < num; i++) {
      cellR = fromSheet.getMergedRegion(i);
      toSheet.addMergedRegion(cellR);
    }
  }
  /**
   * 复制单元格 
   * @param wb
   * @param fromCell
   * @param toCell
   */
  public static void copyCell(XSSFWorkbook wb, XSSFCell fromCell, XSSFCell toCell) {
    XSSFCellStyle newstyle = wb.createCellStyle();
    copyCellStyle(fromCell.getCellStyle(), newstyle);
    //  toCell.setEncoding(fromCell.getStringCelllValue());
    // 样式
    toCell.setCellStyle(newstyle);
    if (fromCell.getCellComment() != null) {
      toCell.setCellComment(fromCell.getCellComment());
    }
    // 不同数据类型处理
    int fromCellType = fromCell.getCellType();
    toCell.setCellType(fromCellType);
    if (fromCellType == XSSFCell.CELL_TYPE_NUMERIC) {
      if (XSSFDateUtil.isCellDateFormatted(fromCell)) {
        toCell.setCellValue(fromCell.getDateCellValue());
      } else {
        toCell.setCellValue(fromCell.getNumericCellValue());
      }
    } else if (fromCellType == XSSFCell.CELL_TYPE_STRING) {
      toCell.setCellValue(fromCell.getRichStringCellValue());
    } else if (fromCellType == XSSFCell.CELL_TYPE_BLANK) {
      // nothing21
    } else if (fromCellType == XSSFCell.CELL_TYPE_BOOLEAN) {
      toCell.setCellValue(fromCell.getBooleanCellValue());
    } else if (fromCellType == XSSFCell.CELL_TYPE_ERROR) {
      toCell.setCellErrorValue(fromCell.getErrorCellValue());
    } else if (fromCellType == XSSFCell.CELL_TYPE_FORMULA) {
      toCell.setCellFormula(fromCell.getCellFormula());
    } else { // nothing29
    }
  }
  /**
   * 行复制功能
   * @param wb
   * @param oldRow
   * @param toRow
   */
  public static void copyRow(XSSFWorkbook wb, XSSFRow oldRow, XSSFRow toRow) {
    toRow.setHeight(oldRow.getHeight());
    for (Iterator cellIt = oldRow.cellIterator(); cellIt.hasNext();) {
      XSSFCell tmpCell = (XSSFCell) cellIt.next();
      XSSFCell newCell = toRow.createCell(tmpCell.getColumnIndex());
      copyCell(wb, tmpCell, newCell);
    }
  }
  /**
   * Sheet复制 
   * @param wb
   * @param fromSheet
   * @param toSheet
   */
  public static void copySheet(XSSFWorkbook wb, XSSFSheet fromSheet, XSSFSheet toSheet) {
    mergeSheetAllRegion(fromSheet, toSheet);
    // 设置列宽
    int length = fromSheet.getRow(fromSheet.getFirstRowNum()).getLastCellNum();
    for (int i = 0; i <= length; i++) {
      toSheet.setColumnWidth(i, fromSheet.getColumnWidth(i));
    }
    for (Iterator rowIt = fromSheet.rowIterator(); rowIt.hasNext();) {
      XSSFRow oldRow = (XSSFRow) rowIt.next();
      XSSFRow newRow = toSheet.createRow(oldRow.getRowNum());
      copyRow(wb, oldRow, newRow);
    }
  }
  public class XSSFDateUtil extends DateUtil {
  }
}
相关文章
|
6月前
|
Java
【java】poi 设置允许西文在单词中间换行
【java】poi 设置允许西文在单词中间换行
|
5月前
|
Java
java线程之分支合并框架
java线程之分支合并框架
|
1月前
|
Java Apache
Apache POI java对excel表格进行操作(读、写) 有代码!!!
文章提供了使用Apache POI库在Java中创建和读取Excel文件的详细代码示例,包括写入数据到Excel和从Excel读取数据的方法。
38 0
|
2月前
|
Java Apache Maven
Java中使用poi+poi-tl实现根据模板导出word文档
这个过程不仅简化了文档生成的工作,而且保证了生成文档的一致性与准确性,特别适合于那些需要生成大量文档的自动化场景。通过以上步骤,Java开发人员可以实现高效、可靠的Word文档导出功能。
1334 0
|
5月前
|
算法 Java
[Java·算法·中等] LeetCode21. 合并两个有序链表
[Java·算法·中等] LeetCode21. 合并两个有序链表
53 2
|
4月前
|
easyexcel Java Apache
EasyExcel导入的时候报错Caused by: java.lang.NoClassDefFoundError: org/apache/poi/poifs/filesystem/File
EasyExcel导入的时候报错Caused by: java.lang.NoClassDefFoundError: org/apache/poi/poifs/filesystem/File
370 0
|
5月前
|
算法 安全 Java
【经典算法】LeetCode 21:合并两个有序链表Java/C/Python3实现含注释说明,Easy)
【经典算法】LeetCode 21:合并两个有序链表Java/C/Python3实现含注释说明,Easy)
36 1
|
5月前
|
Java Maven
使用Java合并PDF文档
使用Java合并PDF文档
204 0
|
5月前
|
算法 Java
Java数据结构与算法:用于处理不相交集合的合并和查找问题
Java数据结构与算法:用于处理不相交集合的合并和查找问题
|
5月前
|
Java
java使用CountDownLatch将一个任务拆解后合并处理
java使用CountDownLatch将一个任务拆解后合并处理
下一篇
无影云桌面