Convertire il workbook Excel in Ods, Sxc e Fods (OpenOffice / LibreOffice calc).

Informazioni su OpenDocument

Il formato OpenDocument (ODF) è un formato file libero e aperto per documenti elettronici originariamente sviluppato da Sun per la suite Open Office. Il formato file per i documenti Excel è OpenDocument Spreadsheet (ODS). OpenDocument è attualmente uno standard OASIS e ISO.

Converti Ods (OpenOffice / LibreOffice calc) in Excel

Aspose.Cells for Python via .NET supporta il caricamento di Ods, Sxc e Fods supportati da OpenOffice / LibreOffice Calc, e converte Ods, Sxc e Fods in file Excel.

from aspose.cells import Workbook
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET
# Load your source ods file
workbook = Workbook("book1.ods")
# Save as xlsx file
workbook.save("ods_out.xlsx")
# Load your source sxc file
workbook = Workbook("book1.sxc")
# Save as xls file
workbook.save("sxc_out.xls")
# Load your source fods file
workbook = Workbook("book1.fods")
# Save as xlsb file
workbook.save("fods_out.xlsb")

Converti Excel in Ods (OpenOffice / LibreOffice Calc)

Aspose.Cells for Python via .NET supporta la conversione di file Excel in file Ods, Sxc e Fods. L’esempio di codice di seguito mostra come convertire il template in file Ods, Sxc e Fods.

from aspose.cells import Workbook
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET
# Load your source workbook
workbook = Workbook("book1.xlsx")
# Save as ods file
workbook.save("Out.ods")
# Save as sxc file
workbook.save("Out.sxc")
# Save as fods file
workbook.save("Out.fods")

Argomenti avanzati