Excel çalışma kitabını Ods, Sxc ve Fods'a (OpenOffice / LibreOffice calc) dönüştürün.
Contents
[
Hide
]
OpenDocument Hakkında
buOpenDocument formatı (ODF) orijinal olarak Sun tarafından Open Office paketi için geliştirilmiş, elektronik ofis belgeleri için ücretsiz ve açık bir dosya biçimidir. OpenDocument Elektronik Tablosu (ODS), Excel belgeleri için dosya biçimidir. OpenDocument şu anda bir OASIS ve ISO standardıdır.
Oranları (OpenOffice / LibreOffice calc) Excel’e Dönüştür
Aspose.Cells, OpenOffice / LibreOffice Calc tarafından desteklenen Ods, Sxc ve Fods’u yüklemeyi ve dönüştürmeyi desteklerOranlar,Sxc veFodlar Excel dosyalarına.
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’i Ods’a Dönüştür (OpenOffice / LibreOffice Calc)
Aspose.Cells, Excel dosyalarının Ods, Sxc ve Fods dosyalarına dönüştürülmesini destekler. Aşağıdaki kod örneği, nasıl dönüştürüleceğini gösterir.şablon Ods, Sxc ve Fods dosyasına.
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"); |