루비 JSON


이 장에서는 Ruby 언어를 사용하여 JSON 개체를 인코딩하고 디코딩하는 방법을 소개합니다.


환경 구성

Ruby를 사용하여 JSON 데이터를 인코딩하거나 디코딩하기 전에 먼저 Ruby JSON 모듈을 설치해야 합니다. 이 모듈을 설치하기 전에 Ruby gem을 설치해야 합니다. Ruby gem을 사용하여 JSON 모듈을 설치합니다. 그러나 최신 버전의 Ruby를 사용하는 경우 gem을 설치했을 수 있습니다. 구문 분석 후 다음 명령을 사용하여 Ruby JSON 모듈을 설치할 수 있습니다.

$gem install json

Ruby를 사용하여 JSON을 구문 분석하세요

다음은 다음과 같습니다. JSON 데이터를 변환하고, input.json 파일에 저장된 데이터:

{
  "President": "Alan Isaac",
  "CEO": "David Richardson",
  
  "India": [
    "Sachin Tendulkar",
    "Virender Sehwag",
    "Gautam Gambhir",
  ],

  "Srilanka": [
    "Lasith Malinga",
    "Angelo Mathews",
    "Kumar Sangakkara"
  ],

  "England": [
    "Alastair Cook",
    "Jonathan Trott",
    "Kevin Pietersen"
  ]
}

다음 Ruby 프로그램을 사용하여 위 JSON 파일을 구문 분석합니다.

#!/usr/bin/ruby
require 'rubygems'
require 'json'
require 'pp'

json = File.read('input.json')
obj = JSON.parse(json)

pp obj

위 예제의 실행 결과는 다음과 같습니다.

{"President"=>"Alan Isaac",
 "CEO"=>"David Richardson",

 "India"=>
  ["Sachin Tendulkar", "Virender Sehwag", "Gautam Gambhir"],

"Srilanka"=>
  ["Lasith Malinga ", "Angelo Mathews", "Kumar Sangakkara"],

 "England"=>
  ["Alastair Cook", "Jonathan Trott", "Kevin Pietersen"]
}