Aggiunta di fogli di lavoro a un nuovo file Excel in Jython
Contents
[
Hide
]
Aspose.Cells - Aggiunta di fogli di lavoro a un nuovo Excel
Per aggiungere documenti utilizzando Aspose.Cells Java per Jython. Qui puoi vedere il codice di esempio.
Codice Jython
from aspose-cells import Settings
from com.aspose.cells import Workbook
from com.aspose.cells import SaveFormat
class AddingWorksheetstoNewExcelFile:
def __init__(self):
dataDir = Settings.dataDir + 'WorkingWithWorksheets/AddingWorksheetstoNewExcelFile/'
workbook = Workbook(dataDir + "Book1.xls")
#Adding a new worksheet to the Workbook object
worksheets = workbook.getWorksheets()
sheetIndex = worksheets.add()
worksheet = worksheets.get(sheetIndex)
#Setting the name of the newly added worksheet
worksheet.setName("My Worksheet")
#Saving the Excel file
workbook.save(dataDir + "book.out.xls")
#Print Message
print "Sheet added successfully."
if __name__ == '__main__':
AddingWorksheetstoNewExcelFile()
Scarica il codice in esecuzione
Scarica Aggiungi documenti (Aspose.Cells) da qualsiasi dei siti di codifica sociale qui sotto menzionati: