package com.aspose.cells.examples.worksheets; import com.aspose.cells.*; import com.aspose.cells.examples.Utils; public class AddingWorksheetstoNewExcelFile { public static void main(String[] args) throws Exception { // The path to the documents directory. String dataDir = Utils.getSharedDataDir(AddingWorksheetstoNewExcelFile.class) + "worksheets/"; // Instantiating a Workbook object Workbook workbook = new Workbook(); // Adding a new worksheet to the Workbook object WorksheetCollection worksheets = workbook.getWorksheets(); int sheetIndex = worksheets.add(); Worksheet worksheet = worksheets.get(sheetIndex); // Setting the name of the newly added worksheet worksheet.setName("My Worksheet"); // Saving the Excel file workbook.save(dataDir + "AWToNewExcelFile_out.xls"); // Print Message System.out.println("Sheet added successfully."); } }