在Python中保存文件
Contents
[
Hide
]
Aspose.Cells - 保存文件
将文件保存到某个位置
如果开发人员需要使用Aspose.Cells Java for Python将其文件保存到某个存储位置,则可以在调用Workbook对象的save方法时,简单地指定文件名(以及其完整的存储路径)和所需的文件格式(使用FileFormatType枚举)。
Python 代码
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.")
从以下任一社交编码网站下载保存文件(Aspose.Cells)。