Konvertera Excel-arbetsbok till Ods, Sxc och Fods (OpenOffice / LibreOffice calc).
Contents
[
Hide
]
Om OpenDocument
DeOpenDocument-format (ODF) är ett gratis och öppet filformat för elektroniska kontorsdokument som ursprungligen utvecklades av Sun för Open Office-paketet. OpenDocument Spreadsheet (ODS) är filformatet för Excel-dokument. OpenDocument är för närvarande en OASIS- och ISO-standard.
Konvertera Ods (OpenOffice / LibreOffice calc) till Excel
Aspose.Cells stöder laddning av Ods, Sxc och Fods som stöds av OpenOffice / LibreOffice Calc, och konverteraOdds,Sxc ochFods till Excel-filer.
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"); |
Konvertera Excel till Ods (OpenOffice / LibreOffice Calc)
Aspose.Cells stöder konvertering av Excel-filer till Ods-, Sxc- och Fods-filer. Kodexemplet nedan visar hur man konverterarmall till Ods, Sxc och Fods fil.
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"); |