JSON を CSV に変換

JSON を CSV に変換

Aspose.Cells は、単純な JSON とネストされた JSON を CSV に変換することをサポートします。JsonLayoutOptionsJsonUtilityクラス。のJsonLayoutOptionsクラスは、次のような JSON レイアウトのオプションを提供しますIgnoreArrayTitle(配列がオブジェクトのプロパティである場合、タイトルは無視されます) または**ArrayAsTable**(配列をテーブルとして処理します)。の**JsonUtility**クラスは、レイアウト オプション セットを使用して JSON を処理します。**JsonLayoutOptions**クラス。

次のコード サンプルは、**JsonLayoutOptionsJsonUtility**ロードするクラスソース JSON ファイルを生成し、出力 CSV ファイル.

サンプルコード

// 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");