Convertir CSV en JSON

Convertir CSV en JSON

Aspose.Cells prend en charge la conversion de CSV en JSON. Pour cela, le API fournitExportRangeToJsonOptionsetJsonUtilityDes classes. LeExportRangeToJsonOptionsfournit les options d’exportation de la plage vers JSON. LaExportRangeToJsonOptionsclasse a les propriétés suivantes.

LeJsonUtilityclasse exporte le JSON en utilisant les options d’exportation définies avec leExportRangeToJsonOptionsclasse.

L’exemple de code suivant illustre l’utilisation deExportRangeToJsonOptionsetJsonUtilityclasses pour chargerfichier source CSVet imprime leJSON sortie dans la console.

Exemple de code

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
//Source directory
String sourceDir = Utils.Get_SourceDirectory();
LoadOptions loadOptions = new LoadOptions(LoadFormat.CSV);
// Load CSV file
Workbook workbook = new Workbook(sourceDir + "SampleCsv.csv", loadOptions);
Cell lastCell = workbook.getWorksheets().get(0).getCells().getLastCell();
// Set ExportRangeToJsonOptions
ExportRangeToJsonOptions options = new ExportRangeToJsonOptions();
Range range = workbook.getWorksheets().get(0).getCells().createRange(0, 0, lastCell.getRow() + 1, lastCell.getColumn() + 1);
String data = JsonUtility.exportRangeToJson(range, options);
// Print JSON
System.out.println(data);

Sortie console

[ { “id”: 1, “language”: “Java”, “edition”: “troisième”, “author”: “Herbert Schildt”, “streetAddress”: 126, “city”: “San Jone”, “état”: “CA”, “code postal”: 394221 }, { “id”: 2, “langue”: “C++”, “édition”: “deuxième”, “author”: “EAAAA”, “streetAddress”: 126, “city”: “San Jones”, “state”: “CA”, “postalCode”: 394221 }, { “id”: 3 , “language”: “.Net”, “edition”: “second”, “author”: “E.Balagurusamy”, “streetAddress”: 126, “city”: “San Jone”, " état": “CA”, “code postal”: 394221 } ]