如何使用apache poi在已存在的excel文件中创建新工作表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用apache poi在已存在的excel文件中创建新工作表相关的知识,希望对你有一定的参考价值。

我正在尝试为现有的excel文件创建一个新的Excel工作表,但我收到错误org.apache.poi.EmptyFileException。以下是我的代码

public static void main(String[] args)
    {
        XSSFWorkbook workbook = null;
        File file = new File("C:/Users/NewUser/Desktop/Sample.xls");
        FileOutputStream fileOut = null;
        try 
        {
            fileOut = new FileOutputStream(file);

             if (file.exists()) {
                    try {
                        workbook = (XSSFWorkbook)WorkbookFactory.create(file);
                    } catch (InvalidFormatException e) {
                        e.printStackTrace();
                    } catch (EncryptedDocumentException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    } catch (IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                    XSSFSheet sheet = workbook.createSheet("Sample sheet2");
                }
                else{
                    workbook = new XSSFWorkbook();
                    XSSFSheet sheet = workbook.createSheet("Sample sheet1");
                }
        } 
        catch (FileNotFoundException e1) 
        {
            e1.printStackTrace();
        }


        try {
            workbook.write(fileOut);
            System.out.println("File Created Succesfully");
            fileOut.close();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

如何克服该异常以及如何在单个excel文件中创建多个工作表?

答案
fileOut = new FileOutputStream(file);

删除你的文件,但它仍然存在(file.exists() == true))。所以当你使用WorkbookFactory.create(...)时你打开一个空文件,你得到一个EmptyFileException。

如果你调试你的编程并在使用WorkbookFactory.create(...)之前停止,你会看到Sample.xls的文件大小为零。

以上是关于如何使用apache poi在已存在的excel文件中创建新工作表的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Apache POI 和 Java 代码检查 Excel 文件中是不是存在信息

Apache POI读取和创建Excel ----01(简单操作)

用poi导入excel文件时,导入文本会出现小数点怎么解决。

JAVA编程中用Apache POI 怎么用SXSSFWorkbook对已存在的excel(.xlsx)操作进行写数据操作

Apache POI Excel - 搜索和替换文本

如何使用Java和apache poi选择excel中的所有单元格