Konvertieren Sie Excel Arbeitsmappe in ODS, SXC und FODS (OpenOffice / LibreOffice Calc).

Über das OpenDocument

Das OpenDocument-Format (ODF) ist ein kostenloses und offenes Dateiformat für elektronische Bürodokumente, das ursprünglich von Sun für die Open-Office-Suite entwickelt wurde. OpenDocument Spreadsheet (ODS) ist das Dateiformat für Excel-Dokumente. OpenDocument ist derzeit ein OASIS- und ISO-Standard.

Ods (OpenOffice / LibreOffice calc) in Excel konvertieren

Aspose.Cells for Python via .NET unterstützt das Laden von Ods, Sxc und Fods, die von OpenOffice / LibreOffice Calc unterstützt werden, und konvertiert Ods,Sxc und Fods in Excel-Dateien.

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")

Excel in Ods (OpenOffice / LibreOffice Calc) konvertieren

Aspose.Cells for Python via .NET unterstützt die Konvertierung von Excel-Dateien in Ods, Sxc und Fods-Dateien. Das folgende Codebeispiel zeigt, wie die Vorlage in Ods, Sxc und Fods-Datei konvertiert wird.

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")

Erweiterte Themen