码迷,mamicode.com
首页 > Web开发 > 详细

Ruby JSON

时间:2020-06-09 18:26:40      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:The   asi   new   htm   news   lin   reserve   rac   使用   

本章节我们将为大家介绍如何使用 Ruby 语言来编码和解码 JSON 对象。

环境配置

在使用 Ruby 编码或解码 JSON 数据前,我们需要先安装 Ruby JSON 模块。在安装该模块前你需要先安装 Ruby gem,我们使用 Ruby gem 安装 JSON 模块。 但是,如果你使用的是最新版本的 Ruby,可能已经安装了 gem,解析来我们就可以使用以下命令来安装Ruby JSON 模块:

$gem install json

使用 Ruby 解析 JSON

以下为JSON数据,将该数据存储在 input.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"]
}

北京代孕包生电13802269370    广州三甲备孕代孕微13802269370

Ruby JSON

标签:The   asi   new   htm   news   lin   reserve   rac   使用   

原文地址:https://www.cnblogs.com/meihuahankai/p/13074123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!