تحويل مصنف Excel إلى Ods و Sxc و Fods (OpenOffice / LibreOffice calc).
Contents
[
Hide
]
حول OpenDocument
التنسيق OpenDocument (ODF) هو تنسيق ملف مجاني ومفتوح لمستندات المكتب الإلكترونية تم تطويره في الأصل بواسطة Sun لمجموعة Open Office. جدول بيانات OpenDocument (ODS) هو تنسيق الملف لوثائق Excel. OpenDocument هو حاليًا معيار OASIS و ISO.
تحويل Ods (OpenOffice / LibreOffice calc) إلى Excel
يدعم Aspose.Cells تحميل Ods و Sxc و Fods التي يدعمها OpenOffice / LibreOffice Calc وتحويلهاأود,Sxc وفودز إلى ملفات 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"); |
تحويل Excel إلى Ods (OpenOffice / LibreOffice Calc)
يدعم Aspose.Cells تحويل ملفات Excel إلى ملفات Ods و Sxc و Fods. يوضح مثال الرمز أدناه كيفية تحويل ملفقالب إلى ملف Ods و Sxc و 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"); |