Skip to main content
DevTools24

Conversor JSON ↔ CSV

Converta arrays JSON para CSV para Excel/Google Sheets, ou importe dados CSV como JSON.

JSON ↔ CSV Converter - Detalhes Técnicos

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.

Alternativa via Linha de Comando

# 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

Referência

Ver Especificação Oficial