web-dev-qa-db-ja.com

POIでExcelワークシートをコピーする

POIを使用してワークシートをあるワークブックから別のワークブックにコピーする方法を知っている人はいますか? WorkbookクラスにはcloneSheetメソッドがありますが、複製されたシートを新しいブックに挿入できないようです。

これを簡単に行うAPIがない場合、すべてのデータ(スタイル、列幅、データなど)をあるシートから別のシートにコピーするコードを誰かが持っていますか?

Jxlsにはシートをコピーするメソッドがありますが、ブック間でコピーする場合は機能しません。

21
Patrick Nichols

私はpoiでいくつかの機能を実装しました。参考のためにコードを参照してください。

import Java.io.BufferedInputStream;
import Java.io.BufferedOutputStream;
import Java.io.FileInputStream;
import Java.io.FileOutputStream;
import Java.io.IOException;
import org.Apache.poi.hssf.usermodel.HSSFCell;
import org.Apache.poi.hssf.usermodel.HSSFRow;
import org.Apache.poi.hssf.usermodel.HSSFSheet;
import org.Apache.poi.hssf.usermodel.HSSFWorkbook;

public class ExcelReadAndWrite {

    public static void main(String[] args) throws IOException {
        ExcelReadAndWrite Excel = new ExcelReadAndWrite();
        Excel.process("D:/LNN/My Workspace/POI/src/tables.xls");
    }

    public void process(String fileName) throws IOException {
        BufferedInputStream bis = new BufferedInputStream(new FileInputStream(fileName));
        HSSFWorkbook workbook = new HSSFWorkbook(bis);
        HSSFWorkbook myWorkBook = new HSSFWorkbook();
        HSSFSheet sheet = null;
        HSSFRow row = null;
        HSSFCell cell = null;
        HSSFSheet mySheet = null;
        HSSFRow myRow = null;
        HSSFCell myCell = null;
        int sheets = workbook.getNumberOfSheets();
        int fCell = 0;
        int lCell = 0;
        int fRow = 0;
        int lRow = 0;
        for (int iSheet = 0; iSheet < sheets; iSheet++) {
            sheet = workbook.getSheetAt(iSheet);
            if (sheet != null) {
                mySheet = myWorkBook.createSheet(sheet.getSheetName());
                fRow = sheet.getFirstRowNum();
                lRow = sheet.getLastRowNum();
                for (int iRow = fRow; iRow <= lRow; iRow++) {
                    row = sheet.getRow(iRow);
                    myRow = mySheet.createRow(iRow);
                    if (row != null) {
                        fCell = row.getFirstCellNum();
                        lCell = row.getLastCellNum();
                        for (int iCell = fCell; iCell < lCell; iCell++) {
                            cell = row.getCell(iCell);
                            myCell = myRow.createCell(iCell);
                            if (cell != null) {
                                myCell.setCellType(cell.getCellType());
                                switch (cell.getCellType()) {
                                case HSSFCell.CELL_TYPE_BLANK:
                                    myCell.setCellValue("");
                                    break;

                                case HSSFCell.CELL_TYPE_BOOLEAN:
                                    myCell.setCellValue(cell.getBooleanCellValue());
                                    break;

                                case HSSFCell.CELL_TYPE_ERROR:
                                    myCell.setCellErrorValue(cell.getErrorCellValue());
                                    break;

                                case HSSFCell.CELL_TYPE_FORMULA:
                                    myCell.setCellFormula(cell.getCellFormula());
                                    break;

                                case HSSFCell.CELL_TYPE_NUMERIC:
                                    myCell.setCellValue(cell.getNumericCellValue());
                                    break;

                                case HSSFCell.CELL_TYPE_STRING:
                                    myCell.setCellValue(cell.getStringCellValue());
                                    break;
                                default:
                                    myCell.setCellFormula(cell.getCellFormula());
                                }
                            }
                        }
                    }
                }
            }
        }
        bis.close();
        BufferedOutputStream bos = new BufferedOutputStream(
                new FileOutputStream("workbook.xls", true));
        myWorkBook.write(bos);
        bos.close();
    }
}
5

NPOIのワークアイテムを作成しました: http://npoi.codeplex.com/WorkItem/View.aspx?WorkItemId=6057

更新:作業項目はNPOI2.0に実装されています。 NPOI 2.0は https://npoi.codeplex.com/releases/view/112932 からダウンロードできます。

3
Tony Qu

Java POIライブラリを使用している場合は、スプレッドシートをメモリにロードしてから、新しいスプレッドシートを作成し、コピーするレコードを1つずつ書き込むのが最善です...ではありません。最良の方法ですが、コピー機能を実行します。

2
user352353

私はPOIでこれを行うために約1週間の努力をしました(coderanchの最新のコードを使用)-コードに欠陥があることを警告します(TreeSetを使用してHashMapに置き換える必要がある場合に問題があります)が、修正した後でも数式でクラッシュすること。

それは可能かもしれませんが、ハッキングされたコードに頼らなければならないのは恐ろしい提案です。

ニーズ/予算に応じて、弾丸を噛み、asposeの支払いを検討することをお勧めします--- http://www.aspose.com/doctest/Java-components/aspose.cells-for-Java/copy-move -worksheets-within-and-between-workbooks.html

書式設定、数式、保護ルールなどのシートを正常にコピーしました。 130秒で300枚やりました。 (300 x 90kbワークブック、1つの15mbワークブックにコンパイル)。デモは無料で、ライセンスの購入を促す追加のシートをワークブックに追加するだけです。

1
paulpooch

これは、あるワークブックから別のワークブックにシートをコピーする私の実装です。この解決策は私のために働きます。このコードは、シートにテーブルなどがない場合に機能します。シートに単純なテキスト(String、boolean、intなど)、数式が含まれている場合、このソリューションは機能します。

Workbook oldWB = new XSSFWorkbook(new FileInputStream("C:\\input.xlsx"));
Workbook newWB = new XSSFWorkbook();
CellStyle newStyle = newWB.createCellStyle(); // Need this to copy over styles from old sheet to new sheet. Next step will be processed below
Row row;
Cell cell;
for (int i = 0; i < oldWB.getNumberOfSheets(); i++) {
    XSSFSheet sheetFromOldWB = (XSSFSheet) oldWB.getSheetAt(i);
    XSSFSheet sheetForNewWB = (XSSFSheet) newWB.createSheet(sheetFromOldWB.getSheetName());
    for (int rowIndex = 0; rowIndex < sheetFromOldWB.getPhysicalNumberOfRows(); rowIndex++) {
        row = sheetForNewWB.createRow(rowIndex); //create row in this new sheet
        for (int colIndex = 0; colIndex < sheetFromOldWB.getRow(rowIndex).getPhysicalNumberOfCells(); colIndex++) {
            cell = row.createCell(colIndex); //create cell in this row of this new sheet
            Cell c = sheetFromOldWB.getRow(rowIndex).getCell(colIndex, Row.CREATE_NULL_AS_BLANK ); //get cell from old/original WB's sheet and when cell is null, return it as blank cells. And Blank cell will be returned as Blank cells. That will not change.
                if (c.getCellType() == Cell.CELL_TYPE_BLANK){
                    System.out.println("This is BLANK " +  ((XSSFCell) c).getReference());
                }
                else {  //Below is where all the copying is happening. First It copies the styles of each cell and then it copies the content.              
                CellStyle origStyle = c.getCellStyle();
                newStyle.cloneStyleFrom(origStyle);
                cell.setCellStyle(newStyle);            

                 switch (c.getCellTypeEnum()) {
                    case STRING:                            
                        cell.setCellValue(c.getRichStringCellValue().getString());
                        break;
                    case NUMERIC:
                        if (DateUtil.isCellDateFormatted(cell)) {                             
                            cell.setCellValue(c.getDateCellValue());
                        } else {                              
                            cell.setCellValue(c.getNumericCellValue());
                        }
                        break;
                    case BOOLEAN:

                        cell.setCellValue(c.getBooleanCellValue());
                        break;
                    case FORMULA:

                        cell.setCellValue(c.getCellFormula());
                        break;
                    case BLANK:
                        cell.setCellValue("who");
                        break;
                    default:
                        System.out.println();
                    }
                }
            }
        }

    }
    //Write over to the new file
    FileOutputStream fileOut = new FileOutputStream("C:\\output.xlsx");
    newWB.write(fileOut);
    oldWB.close();
    newWB.close();
    fileOut.close();

何も残したり追加したりせずにシート全体をコピーする必要がある場合。除去のプロセスは、上記のコードよりもうまく、より速く機能すると思います。また、数式、図面、表、スタイル、フォントなどを失うことを心配する必要はありません。

XSSFWorkbook wb = new XSSFWorkbook("C:\\abc.xlsx");
for (int i = wb.getNumberOfSheets() - 1; i >= 0; i--) {
        if (!wb.getSheetName(i).contentEquals("January")) //This is a place holder. You will insert your logic here to get the sheets that you want.  
            wb.removeSheetAt(i); //Just remove the sheets that don't match your criteria in the if statement above               
}
FileOutputStream out = new FileOutputStream(new File("C:\\xyz.xlsx"));
wb.write(out);
out.close();
0
Faraz

最良の方法は、ファイルを開いてロードすることです。ソースExcelファイルから特定のシートのいずれかが必要な場合は、目的のシートと一致しないシートを削除する必要があります。

これを試して:

     FileInputStream fis=new FileInputStream("D:\\SourceExcel.xls");
     Workbook wb=WorkbookFactory.create(fis);

    for (int i = wb.getNumberOfSheets() - 1; i >= 0; i--) {
            if (!wb.getSheetName(i).contentEquals("SheetNameWhichwantToRetain")) //This is a place holder. You will insert your logic here to get the sheets that you want.  
                wb.removeSheetAt(i); //Just remove the sheets that don't match your criteria in the if statement above               
    }
    FileOutputStream fos = new FileOutputStream(new File("D:\\DestinationFileName.xls"));
    wb.write(fos);
    fos.close();
    System.out.println("file is copied in a new file at destination :"+"D:\\DestinationFileName.xls");
    }
    catch(Exception e){
        e.printStackTrace();
    }

これは明確にするのに役立つはずです

0