Konvertieren Sie die Excel-Arbeitsmappe in Ods, Sxc und Fod (OpenOffice / LibreOffice calc).

Über OpenDocument

DasOpenDocument-Format (ODF) ist ein freies und offenes Dateiformat für elektronische Office-Dokumente, 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.

Konvertieren Sie Ods (OpenOffice / LibreOffice calc) in Excel

Aspose.Cells unterstützt das Laden von Ods, Sxc und Fods, die von OpenOffice / LibreOffice Calc unterstützt werden, und konvertierenOdds,Sxc undFods zu 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");

Konvertieren Sie Excel in Ods (OpenOffice / LibreOffice Calc)

Aspose.Cells unterstützt die Konvertierung von Excel-Dateien in Ods-, Sxc- und Fods-Dateien. Das folgende Codebeispiel zeigt, wie man die konvertiertVorlage in Ods-, Sxc- und Fods-Datei.

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

Themen vorantreiben