Créer un nouveau classeur
Contents
[
Hide
]
Aspose.Cells - Créer un nouveau classeur
La classe Workbook est disponible pour une utilisation simple
Java
Workbook workbook = new Workbook(); // Creating a Workbook object
workbook.save("newWorkBook.xlsx", SaveFormat.XLSX); //Workbooks can be saved in many formats
Apache POI SS - HSSF XSSF - Créer un nouveau classeur
Créez un nouveau classeur à l’aide de la classe Workbook et enregistrez-le à l’aide de FileOutputStream.
Java
Workbook wb = new HSSFWorkbook();
FileOutputStream fileOut;
fileOut = new FileOutputStream("newWorkbook.xls");
wb.write(fileOut);
fileOut.close();