JSON ↔ CSV 转换器
将 JSON 数组转换为 CSV 以用于 Excel/Google Sheets,或将 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