在 Python 中保存文件
Contents
[
Hide
]
Aspose.Cells - 保存文件
将文件保存到某个位置
如果开发人员需要使用Aspose.Cells Java for Python到某个存储位置,然后他们可以简单地指定文件名(及其完整的存储路径)和所需的文件格式(使用文件格式类型枚举),同时调用救球的方法工作簿目的。
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)**来自以下任何社交编码网站: