Convertisseur JSON vers CSV
Convertissez des tableaux JSON en CSV pour Excel/Google Sheets, ou importez des données CSV en JSON.
JSON ↔ CSV Converter - Détails techniques
CSV (Comma-Separated Values) is a simple format for tabular data, widely supported by spreadsheet applications. JSON arrays of objects can be converted to CSV where each object becomes a row.
Alternative en ligne de commande
# Convert JSON to CSV (using jq + miller)\njq -r '.[] | [.field1, .field2] | @csv' file.json\n\n# Convert CSV to JSON (using miller)\nmlr --csv --json cat file.csv