Converti la cartella di lavoro di Excel in Ods, Sxc e Fods (OpenOffice / LibreOffice calc).
Contents
[
Hide
]
A proposito di OpenDocument
IlFormato OpenDocument (ODF) è un formato di file gratuito e aperto per i documenti elettronici dell’ufficio originariamente sviluppato da Sun per la suite Open Office. OpenDocument Spreadsheet (ODS) è il formato file per i documenti Excel. 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 la conversioneOdd,Sxc eFondi ai file Excel.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 seguente mostra come convertire il filemodello al file Ods, Sxc e Fods.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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"); |