RevealTheme logo

JSON to CSV 변환기

객체로 이루어진 JSON 배열을 CSV 형식으로 변환합니다. API 데이터를 스프레드시트로 내보내기에 완벽합니다.

이 도구 사용 방법

  1. 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. 2

    Click the Convert button to generate the CSV.

  3. 3

    Read the CSV in the output panel below the button, with the header row first followed by one row per object.

  4. 4

    Select the output text and copy it into a spreadsheet, a .csv file, or wherever you need it.

JSON to CSV 변환기란 무엇인가요?

JSON은 API의 보편적 형식이고, CSV는 스프레드시트의 보편적 형식입니다. 둘 사이의 변환은 흔한 작업입니다: 분석 데이터를 Excel로 내보내거나, CSV 데이터를 JavaScript 애플리케이션으로 가져오는 등입니다. 이 도구는 평면 객체 배열을 잘 처리합니다. 깊이 중첩된 구조는 전처리가 필요할 수 있습니다.

일반적인 사용 사례

  • 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.

자주 묻는 질문

제 JSON에 중첩된 객체가 있으면 어떻게 되나요?
이 도구는 중첩된 값을 CSV 셀 안의 문자열로 변환합니다. 복잡한 구조의 경우 jq 같은 도구로 먼저 평탄화하세요.
특수 문자를 처리하나요?
예: 값에 포함된 쉼표와 따옴표는 RFC 4180에 따라 올바르게 이스케이프됩니다.

관련 도구