Dosyaları Python'de Kaydetme
Contents
[
Hide
]
Aspose.Cells - Dosyaları Kaydetme
Dosyayı bir konuma kaydetme
Geliştiricilerin dosyalarını kullanarak kaydetmeleri gerekiyorsaAspose.Cells Java for Python bir depolama konumuna daha sonra dosya adını (tam depolama yolu ile birlikte) ve istenen dosya formatını (kullanarak) belirtebilirler.Dosya Biçimi Türünumaralandırma) çağrılırkenkayıt etmekyöntemiÇalışma kitabınesne.
Python Kod
fileFormatType = self.FileFormatType
# Creating an Workbook object with an Excel file path
workbook = self.Workbook(self.dataDir + "Book1.xls")
# Save in default (Excel2003) format
workbook.save(self.dataDir + "book.default.out.xls")
# Save in Excel2003 format
workbook.save(self.dataDir + "book.out.xls", fileFormatType.EXCEL_97_TO_2003)
# Save in Excel2007 xlsx format
workbook.save(self.dataDir + "book.out.xlsx", fileFormatType.XLSX)
# Save in SpreadsheetML format
workbook.save(self.dataDir + "book.out.xml", fileFormatType.EXCEL_2003_XML)
# Print Message
print("<BR>")
print("Worksheets are saved successfully.")
İndirmekDosyayı Kaydetme (Aspose.Cells) aşağıda belirtilen sosyal kodlama sitelerinin herhangi birinden: