Class JsonConverter

JsonConverter class

Converter for conversion between json data structure and other spreadsheet file formats.

public class JsonConverter

Methods

NameDescription
static Process(LowCodeLoadOptions, LowCodeSaveOptions)Converts between json data and other spreadsheet file formats.
static Process(string, string)Converts given template file between json and other formats.

Examples

using System;
using System.IO;
using Aspose.Cells;
using Aspose.Cells.LowCode;

namespace AsposeCellsExamples
{
    public class LowCodeClassJsonConverterDemo
    {
        public static void Run()
        {
            string jsonFilePath = "data.json";
            string excelFilePath = "res.xlsx";

            try
            {
                // Convert JSON to Excel using Aspose.Cells.LowCode.JsonConverter
                JsonConverter.Process(jsonFilePath, excelFilePath);

                Console.WriteLine("Conversion completed successfully.");
            }
            catch (Exception ex)
            {
                Console.WriteLine($"Error during conversion: {ex.Message}");
            }
        }
    }
}

See Also