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 supporta il caricamento di Ods, Sxc e Fods supportati da OpenOffice / LibreOffice Calc, e converti Ods, Sxc e Fods in file Excel.

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

Converti Excel in Ods (OpenOffice / LibreOffice Calc)

Aspose.Cells supporta la conversione di file Excel in file Ods, Sxc e Fods. L’esempio di codice qui sotto mostra come convertire il modello in file Ods, Sxc e Fods.

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

Argomenti avanzati