如何使用Java创建空白Excel工作表。(How to create blank excel sheet using Java.)

优质
小牛编辑
128浏览
2023-12-01

问题描述 (Problem Description)

如何使用Java创建空白Excel工作表。

解决方案 (Solution)

以下是使用Java创建空白Excel工作表的程序。

import java.io.*;
import org.apache.poi.xssf.usermodel.*;
public class CreateBlankExcel {
   public static void main(String[] args)throws Exception {
      //Create Blank workbook
      XSSFWorkbook workbook = new XSSFWorkbook();
      //Create file system using specific name
      FileOutputStream out = new FileOutputStream(
         new File("C:/poiexcel/createBlankWorkBook.xlsx"));
      //write operation workbook using file out object
      workbook.write(out);
      out.close();
      System.out.println("createworkbook.xlsx written successfully");
   }
}

结果 (Result)

空白Excel表