JSON'i CSV'e dönüştür
Contents
[
Hide
]
JSON’i CSV’e dönüştür
Aspose.Cells, basit ve yuvalanmış JSON’in CSV’e dönüştürülmesini destekler. Bunun için API şunları sağlar:JsonLayoutOptions ve**JsonUtility** sınıflar. bu**JsonLayoutOptions**class, JSON düzeni için aşağıdaki gibi seçenekler sunar**IgnoreArrayTitle**(dizi bir nesnenin özelliğiyse başlığı yok sayar) veya**ArrayAsTable**(diziyi tablo olarak işler). bu**JsonUtility**class, JSON ile ayarlanan düzen seçeneklerini kullanarak işler.**JsonLayoutOptions**sınıf.
Aşağıdaki kod örneği, kullanımını gösterir**JsonLayoutOptions**ve**JsonUtility** yüklemek için sınıflarkaynak JSON dosyası ve oluştururçıktı CSV dosyası.
Basit kod
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"); |