我正在尝试从Java代码创建工作簿。
执行此程序后,我正在为此使用POI库,
工作簿已成功在我的目录中创建,但是当我尝试打开我的excel文件时,出现错误,例如“Excel在workspace.xlsx中发现了不可读的内容”。

public static void main(String args[]) throws InterruptedException{
        Workbook wb = new XSSFWorkbook();
        FileOutputStream fileOut;
        try {
            fileOut = new FileOutputStream("workbook.xls");
            wb.write(fileOut);
            fileOut.close();
            System.out.println("success");
        } catch (Exception e) {
            // TODO Auto-generated catch block
              System.out.println("failure");
            e.printStackTrace();
        }

}

我正在使用Excel 2010。

最佳答案

您的代码犯了两个错误-没有工作表(无效)和错误的扩展名(XSSFWorkbook = .xlsx)

要创建一个新的空Excel xlsx文件,您的代码应改为:

Workbook wb = new XSSFWorkbook();
wb.createSheet();
FileOutputStream fileOut;
try {
     fileOut = new FileOutputStream("workbook.xlsx");
     wb.write(fileOut);
     fileOut.close();
     System.out.println("success");
 } catch (Exception e) {
     throw new RuntimeException("failure", e);
 }

10-08 01:04