JSON を CSV に変換
Contents
[
Hide
]
JSON を CSV に変換
Aspose.Cells は、単純な JSON とネストされた JSON を CSV に変換することをサポートします。JsonLayoutOptionsとJsonUtilityクラス。のJsonLayoutOptionsクラスは、次のような JSON レイアウトのオプションを提供しますIgnoreArrayTitle(配列がオブジェクトのプロパティである場合、タイトルは無視されます) または**ArrayAsTable**(配列をテーブルとして処理します)。の**JsonUtility**クラスは、レイアウト オプション セットを使用して JSON を処理します。**JsonLayoutOptions**クラス。
次のコード サンプルは、**JsonLayoutOptionsとJsonUtility**ロードするクラスソース JSON ファイルを生成し、出力 CSV ファイル.
サンプルコード
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 | |
//Source directory | |
string sourceDir = RunExamples.Get_SourceDirectory(); | |
//Output directory | |
string outputDir = RunExamples.Get_OutputDirectory(); | |
// Read JSON file | |
string str = File.ReadAllText(sourceDir + "SampleJson.json"); | |
// Create empty workbook | |
Workbook workbook = new Workbook(); | |
// Get Cells | |
Cells cells = workbook.Worksheets[0].Cells; | |
// Set JsonLayoutOptions | |
JsonLayoutOptions importOptions = new JsonLayoutOptions(); | |
importOptions.ConvertNumericOrDate = true; | |
importOptions.ArrayAsTable = true; | |
importOptions.IgnoreTitle = true; | |
JsonUtility.ImportData(str, cells, 0, 0, importOptions); | |
// Save Workbook | |
workbook.Save(outputDir + @"SampleJson_out.csv"); |