无法使用JExcel API复制Excel工作表

时间:2012-03-31 20:36:06

标签: java excel api jxl jexcelapi

我正在处理一些相当复杂的Excel文件,并遇到了复制工作表的问题。每当我尝试复制不完全空白的工作表时,我都会收到以下消息:

Exception in thread "main" java.lang.NullPointerException
     at jxl.write.biff.WritableSheetCopier.shallowCopyCells(WritableSheetCopier.java:499)
     at jxl.write.biff.WritableSheetCopier.copySheet(WritableSheetCopier.java:239)
     at jxl.write.biff.WritableSheetImpl.copy(WritableSheetImpl.java:1622)
     at jxl.write.biff.WritableWorkbookImpl.copySheet(WritableWorkbookImpl.java:987)
     at excelCalc.main(excelCalc.java:18)

我想知道这里的问题是什么。为什么会有一个“.copySheet(”函数,如果它不能用于包含信息的工作表。为了尝试以更简单的比例重现问题,我创建了你在下面看到的代码。我希望输出看是2张相同的纸张,单元格(0,0)标签为“test”。一张名为“Flows”的另一张“复制”。有关为什么会给出这个空指针的任何想法?

import java.io.File;

import jxl.*;
import jxl.write.*;

public class excelCalc
{
    public static void main(String[] args) throws Exception
    {
        WritableWorkbook outputBook = Workbook.createWorkbook(new File("C:/Users/Kevin Brey/CS243/ExcelTest/files/output", "output.xls"));

        WritableSheet rSheet = outputBook.createSheet("Flows", 0);

        rSheet.addCell(new Label(0, 0, "test"));
        outputBook.copySheet(0, "copy", 0);
        outputBook.write();
        outputBook.close();
    }
}

编辑: 此代码也提供了相同的异常:

import java.io.File;

import jxl.*;
import jxl.write.*;

public class excelCalc
{
    public static void main(String[] args) throws Exception
    {
        WritableWorkbook outputBook = Workbook.createWorkbook(new File("C:/Users/Kevin Brey/CS243/ExcelTest/files/output", "output.xls"));

        WritableSheet sheet1 = outputBook.createSheet("Sheet1", 0);
        WritableSheet sheet2 = outputBook.createSheet("Sheet2", 1);

        sheet1.addCell(new Label(0, 0, "Label1"));
        sheet2.addCell(new Label(0, 0, "Label2"));

        outputBook.copySheet(0, "Copy", 1);

        outputBook.write();
        outputBook.close();
    }
}

我对可能出错的一个想法是,由于工作表已打开并已编辑,因此无法复制。我真的不知道怎么解决这个问题。

2 个答案:

答案 0 :(得分:10)

这是jxl-2.6.12.jar中的一个错误,请使用jxl-2.6.10.jar。

详细说明:

错字'&&'进入'&'

第493行 - WritableSheetCopier.java中的第504行

if (c != null)
          {
            toSheet.addCell(c);

            // Cell.setCellFeatures short circuits when the cell is copied,
            // so make sure the copy logic handles the validated cells        
            if (c.getCellFeatures() != null &
                c.getCellFeatures().hasDataValidation())
            {
              validatedCells.add(c);
            }
          }

第540行 - WritableSheetCopier.java中的第551行

if (c != null)
          {
            toSheet.addCell(c);

            // Cell.setCellFeatures short circuits when the cell is copied,
            // so make sure the copy logic handles the validated cells        
            if (c.getCellFeatures() != null &
                c.getCellFeatures().hasDataValidation())
            {
              validatedCells.add(c);
            } 
          }

第990行 - SheetCopier.java中的第1001行

if (c != null)
          {
            toSheet.addCell(c);

            // Cell.setCellFeatures short circuits when the cell is copied,
            // so make sure the copy logic handles the validated cells
            if (c.getCellFeatures() != null &
                c.getCellFeatures().hasDataValidation())
            {
              validatedCells.add(c);
            }
          }

答案 1 :(得分:0)

复印页为空,在复印前将一些单元格添加到复印纸