Ruby XML到JSON转换器?

时间:2009-10-07 08:42:54

标签: xml ruby json converter

是否有一个库可以在Ruby中将XML转换为JSON?

7 个答案:

答案 0 :(得分:94)

一个简单的伎俩:

首先你需要gem install json,然后在使用Rails时你可以这样做:

require 'json'
require 'active_support/core_ext'
Hash.from_xml('<variable type="product_code">5</variable>').to_json #=> "{\"variable\":\"5\"}"

如果你没有使用Rails,那么你可以gem install activesupport,要求它,事情应该顺利进行。

示例:

require 'json'
require 'net/http'
require 'active_support/core_ext/hash'
s = Net::HTTP.get_response(URI.parse('https://stackoverflow.com/feeds/tag/ruby/')).body
puts Hash.from_xml(s).to_json

答案 1 :(得分:23)

我使用Crack,一个简单的XML和JSON解析器。

require "rubygems"
require "crack"
require "json"

myXML  = Crack::XML.parse(File.read("my.xml"))
myJSON = myXML.to_json

答案 2 :(得分:13)

如果你想保留所有属性我推荐cobravsmongoose http://cobravsmongoose.rubyforge.org/ 它使用了badgerfish惯例。

<alice sid="4"><bob sid="1">charlie</bob><bob sid="2">david</bob></alice>

变为:

{"alice":{"@sid":"4","bob":[{"$":"charlie","@sid":"1"},{"$":"david","@sid":"2"}]}}

代码:

require 'rubygems'
require 'cobravsmongoose'
require 'json'
xml = '<alice sid="4"><bob sid="1">charlie</bob><bob sid="2">david</bob></alice>'
puts CobraVsMongoose.xml_to_hash(xml).to_json

答案 3 :(得分:5)

您可能会发现xml-to-json gem很有用。它维护属性,处理指令和DTD语句。

安装

gem install 'xml-to-json'

用法

require 'xml/to/json'
xml = Nokogiri::XML '<root some-attr="hello">ayy lmao</root>'
puts JSON.pretty_generate(xml.root) # Use `xml` instead of `xml.root` for information about the document, like DTD and stuff

产地:

{
  "type": "element",
  "name": "root",
  "attributes": [
    {
      "type": "attribute",
      "name": "some-attr",
      "content": "hello",
      "line": 1
    }
  ],
  "line": 1,
  "children": [
    {
      "type": "text",
      "content": "ayy lmao",
      "line": 1
    }
  ]
}

这是xml-to-hash的简单衍生物。

答案 4 :(得分:2)

假设您正在使用libxml,您可以尝试使用此变体(免责声明,这适用于我的有限用例,可能需要调整才能完全通用)

require 'xml/libxml'

def jasonized
  jsonDoc = xml_to_hash(@doc.root)
  render :json => jsonDoc
end

def xml_to_hash(xml)
  hashed = Hash.new
  nodes = Array.new

  hashed[xml.name+"_attributes"] = xml.attributes.to_h if xml.attributes?
  xml.each_element { |n| 
    h = xml_to_hash(n)
    if h.length > 0 then 
      nodes << h 
    else
      hashed[n.name] = n.content
    end
  }
  hashed[xml.name] = nodes if nodes.length > 0
  return hashed
end

答案 5 :(得分:2)

如果你正在寻找速度,我会推荐Ox,因为它几乎是已经提到过的最快的选择。

我使用来自omg.org/spec的1.1 MB的XML文件运行了一些基准测试 这些是结果(以秒为单位):

xml = File.read('path_to_file')
Ox.parse(xml).to_json                    --> @real=44.400012533
Crack::XML.parse(xml).to_json            --> @real=65.595127166
CobraVsMongoose.xml_to_hash(xml).to_json --> @real=112.003612029
Hash.from_xml(xml).to_json               --> @real=442.474890548

答案 6 :(得分:0)

简单,没有依赖性。

Hash.from_xml(xml_string).to_json