Convertitore da JSON a CSV
Converte un array JSON di oggetti in formato CSV. Perfetto per esportare dati API in fogli di calcolo.
Come usare questo strumento
- 1
Paste or type a JSON array of objects into the text box. The array must be non-empty (for example: [{"name":"A","value":1}]).
- 2
Click the Convert button to generate the CSV.
- 3
Read the CSV in the output panel below the button, with the header row first followed by one row per object.
- 4
Select the output text and copy it into a spreadsheet, a .csv file, or wherever you need it.
Che cos'è il convertitore da JSON a CSV?
JSON è il formato universale delle API; CSV è il formato universale dei fogli di calcolo. Convertire tra i due è un'operazione comune: esportare le analitiche in Excel, importare dati CSV in applicazioni JavaScript, ecc. Questo strumento gestisce bene gli array di oggetti piatti; le strutture profondamente annidate possono richiedere una pre-elaborazione.
Casi d'uso comuni
Turning a small JSON response from an API into a CSV you can paste straight into Excel or Google Sheets.
Quickly eyeballing tabular API data as rows and columns instead of nested braces.
Preparing a CSV for a bulk-import feature that expects flat columns, when your source data is already a uniform JSON array.
Converting a JSON fixture or seed file into CSV for a quick import into a database GUI.
Generating a CSV snippet for documentation or a bug report without installing jq or writing a script.
Sanity-checking that a JSON array has consistent keys across records by spotting blank or missing cells in the output.
Domande frequenti
Cosa succede se il mio JSON contiene oggetti annidati?▼
Gestisce i caratteri speciali?▼
Strumenti correlati
Convertitore da CSV a JSON
Converte i dati CSV in un array JSON di oggetti. La prima riga viene trattata come intestazione.
Da CSV a SQL INSERT
Genera istruzioni SQL INSERT a partire da dati CSV. Utile per importare esportazioni CSV nei database.
Convertitore da binario a esadecimale
Converte i numeri binari in esadecimale. L'esadecimale è 4 volte più compatto del binario per lo stesso valore.
Convertitore da esadecimale a binario
Converte i numeri esadecimali in binario. Ogni cifra esadecimale si espande esattamente in 4 cifre binarie.
Convertitore da decimale a binario
Converte numeri decimali in binario, esadecimale e ottale, tutte le basi contemporaneamente.
Convertitore da ASCII a esadecimale
Converte il testo in codici esadecimali ASCII e viceversa. Ogni carattere viene convertito nel suo valore esadecimale a 2 cifre.