Converti-JSON-in-Excel
Converti JSON in cartella di lavoro di Excel
Non c’è bisogno di chiedersi come convertire JSON in file Excel, perché la libreria Apose.Cells for .NET ha la decisione migliore. Il Aspose.Cells API fornisce supporto per la conversione del formato JSON in fogli di calcolo. Puoi usareJsonLoadOptions class per specificare impostazioni aggiuntive per l’importazione di JSON nella cartella di lavoro.
L’esempio di codice seguente illustra l’importazione di JSON nella cartella di lavoro di Excel. Si prega di consultare il codice per convertirefile sorgente al file xlsx generato dal codice per riferimento.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// create a Workbook object | |
Workbook wb = new Workbook("sample.json"); | |
//save file to xlsx format | |
wb.Save("sample_out.xlsx"); |
L’esempio di codice seguente che utilizza la classe JsonLoadOptions per specificare impostazioni aggiuntive illustra l’importazione di JSON nella cartella di lavoro di Excel. Si prega di consultare il codice per convertirefile sorgente al file xlsx generato dal codice per riferimento.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Create an options of loading the file. | |
JsonLoadOptions options = new JsonLoadOptions(); | |
//Indicates whether importing each attribute of JsonObject object as one worksheet when all child nodes are array nodes. | |
options.MultipleWorksheets = true; | |
Workbook book = new Workbook("sample.json", options); | |
//save file to xlsx format | |
book.Save("sample_out.xlsx"); |
L’esempio di codice seguente illustra l’importazione della stringa JSON nella cartella di lavoro di Excel. È inoltre possibile specificare la posizione del layout durante l’importazione di JSON. Consultare il codice per convertire la stringa JSON nel file xlsx generato dal codice come riferimento.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
string inputJson = @"[ | |
{ BEFORE: 'before cell', TEST: 'asd1', AFTER: 'after cell' }, | |
{ BEFORE: 'before cell', TEST: 'asd2', AFTER: 'after cell' }, | |
{ BEFORE: 'before cell', TEST: 'asd3', AFTER: 'after cell' }, | |
{ BEFORE: 'before cell', TEST: 'asd4', AFTER: 'after cell' } | |
]"; | |
string sheetName = "Sheet1"; | |
int row = 3; | |
int column = 2; | |
// create a Workbook object | |
Workbook book = new Workbook(); | |
Worksheet worksheet = book.Worksheets[sheetName]; | |
// set JsonLayoutOptions to treat Arrays as Table | |
JsonLayoutOptions jsonLayoutOptions = new JsonLayoutOptions(); | |
jsonLayoutOptions.ArrayAsTable = true; | |
JsonUtility.ImportData(inputJson, worksheet.Cells, row, column, jsonLayoutOptions); | |
//save file to xlsx format | |
book.Save("out.xlsx"); |