Excel ワークブックを Ods、Sxc、および Fods (OpenOffice / LibreOffice calc) に変換します。
Contents
[
Hide
]
オープンドキュメントについて
のOpenDocument 形式 (ODF)は、もともと Sun が Open Office スイート用に開発した、電子オフィス ドキュメント用の無料でオープンなファイル形式です。 OpenDocument スプレッドシート (ODS) は、Excel ドキュメントのファイル形式です。 OpenDocument は現在、OASIS および ISO 標準です。
Ods (OpenOffice / LibreOffice calc) を Excel に変換する
Aspose.Cells は、OpenOffice / LibreOffice Calc でサポートされている Ods、Sxc、および Fods の読み込みをサポートし、変換しますオッズ,Sxcとフードエクセルファイルに。
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"); |