什麼是CSV轉JSON轉換器?
CSV 轉 JSON 轉換器將逗號分隔的資料轉換為結構化 JSON。適用於將試算表資料匯入需要 JSON 格式的網頁應用程式、API 或資料庫。
使用方法
- 貼上 CSV 資料或上傳 .csv 檔案——工具會自動偵測分隔符號和標題列。
- 預覽解析後的表格,確認欄位對應和資料型別是否正確。
- 下載 JSON 輸出或直接複製。可選擇物件陣列或巢狀格式。
結果
將聯絡人試算表匯出為 CSV,在此轉換後即可取得可直接 POST 到 CRM API 的 JSON 陣列。
CSV 轉 JSON 轉換器將逗號分隔的資料轉換為結構化 JSON。適用於將試算表資料匯入需要 JSON 格式的網頁應用程式、API 或資料庫。
將聯絡人試算表匯出為 CSV,在此轉換後即可取得可直接 POST 到 CRM API 的 JSON 陣列。
將CSV資料轉換為JSON格式
| name | age | city | |
|---|---|---|---|
| Alice Johnson | alice@example.com | 29 | New York |
| Bob Smith | bob@example.com | 34 | London |
| Carol White | carol@example.com | 27 | Tokyo |
| David Lee | david@example.com | 41 | Sydney |
[
{
"name": "Alice Johnson",
"email": "alice@example.com",
"age": 29,
"city": "New York"
},
{
"name": "Bob Smith",
"email": "bob@example.com",
"age": 34,
"city": "London"
},
{
"name": "Carol White",
"email": "carol@example.com",
"age": 27,
"city": "Tokyo"
},
{
"name": "David Lee",
"email": "david@example.com",
"age": 41,
"city": "Sydney"
}
]