JSON ↔ CSV 변환기
Excel/Google Sheets용 JSON 배열을 CSV로 변환하거나 CSV 데이터를 JSON으로 가져옵니다.
JSON ↔ CSV Converter - 기술 세부 정보
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.
명령줄 대안
# 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