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 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.
// 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 = new Workbook("book1.ods"); | |
//Save as xlsx file | |
workbook.Save("ods_out.xlsx"); | |
//Load your source sxc file | |
workbook = new Workbook("book1.sxc"); | |
//Save as xls file | |
workbook.Save("sxc_out.xls"); | |
//Load your source fods file | |
workbook = new Workbook("book1.fods"); | |
//Save as xlsb file | |
workbook.Save("fods_out.xlsb"); |
Excel in Ods (OpenOffice / LibreOffice Calc) konvertieren
Aspose.Cells unterstützt die Konvertierung von Excel-Dateien in Ods, Sxc und Fods-Dateien. Das nachfolgende Codebeispiel zeigt, wie die Vorlage in Ods, Sxc und Fods-Dateien konvertiert wird.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Load your source workbook | |
Workbook workbook = new 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"); |