首先让我说我对 Java 和这个站点非常陌生。我现在读了一两本书,从那以后一直在寻找小项目来让自己开心。我试图对此进行研究,但我无法找到我需要的信息。话虽如此,这是我在这里的第一个问题,所以如果这是非常早期的初学者的东西并且我遗漏了一些明显的东西,我深表歉意。
关于这个项目,我姐夫在工作中遇到了一个问题,他的文件夹中有 90 个左右的 Excel 工作簿,他需要将每个报表的第一个工作表合并到一个主工作簿中。他可以手动完成,但我认为尝试找出使用 Java 的方法会很有趣。
我做了一些研究并下载了 JExcelAPI 并将 .jar 添加到我的类路径中。我在我的电脑上创建了两个目录。
C:\Excel\
C:\Excel\完成\
在 C:\Excel\ 我创建了两个虚拟 excel 表。出于测试目的,我已经重命名了每张纸上的第一张纸。在完成的文件夹中,我创建了我打算将这些工作表合并到的主文档。当工作表是空的并且我运行它时,工作表似乎被复制了。主文件中有两张表,它们的名称对应于我在各自工作簿中给它们的名称,所以我认为这是有效的。但是,当我向其中一张表中添加信息并尝试运行时,我得到一个空指针异常。我已经为此工作了几个小时,所以也许我只是需要休息一下,但我不知道出了什么问题。我访问了 JExcelAPI 的网站并尝试了一种看起来像是过时的方法(在 importSheet() 存在之前)。那没有
如果有人有时间并且熟悉 JExcelAPI,你能告诉我有什么问题吗?我真的很感激。我已经在下面发布了错误和我的代码。
- 错误 -
spreadsheet1.xls
Exception in thread "main" java.lang.NullPointerException
at jxl.write.biff.SheetCopier.deepCopyCells(SheetCopier.java:996)
at jxl.write.biff.SheetCopier.importSheet(SheetCopier.java:542)
at jxl.write.biff.WritableSheetImpl.importSheet(WritableSheetImpl.java:2699)
at jxl.write.biff.WritableWorkbookImpl.importSheet(WritableWorkbookImpl.java:1897)
at sheetcopier.SheetCopier.main(SheetCopier.java:32)
- 代码 -
package sheetcopier;
import java.io.File;
import java.io.IOException;
import java.nio.file.DirectoryStream;
import java.nio.file.Files;
import java.nio.file.NotDirectoryException;
import java.nio.file.Path;
import java.nio.file.Paths;
import jxl.*;
import jxl.read.biff.BiffException;
import jxl.write.WritableWorkbook;
import jxl.write.WriteException;
public class SheetCopier {
public static void main(String[] args) throws WriteException, BiffException {
Path inputpath = Paths.get("C:/Excel"); //Directory with excel documents to be copied
File outputfile = new File("C:/ExcelFinished/finishedbook.xls"); //Master/End file
//Read all files from directory
try (DirectoryStream<Path> inputfiles = Files.newDirectoryStream(inputpath)){
//Get a writable workbook
WritableWorkbook writableworkbook = Workbook.createWorkbook(outputfile);
for(Path path: inputfiles)
{
Workbook sourceworkbook = Workbook.getWorkbook(path.toFile()); //Get the source workbook
System.out.println(path.getFileName()); //Print workbook being processed
Sheet readablesheet = sourceworkbook.getSheet(0); //Get the first sheet
writableworkbook.importSheet(readablesheet.getName(), 0, readablesheet); //Import the sheet into the new workbook
//Sheet names are imported if sheets are empty. If sheets are populated I get a null pointer error.
}
writableworkbook.write();
writableworkbook.close();
}
catch(NotDirectoryException e) {
System.err.println(inputpath + " is not a directory." + e);
}
catch(IOException e) {
System.err.println("I/O error." + e);
}
}
}