RubyでXMLをJSONに変換するライブラリはありますか?
簡単なトリック:
まず、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
Crack 、単純なXMLおよびJSONパーサーを使用します。
require "rubygems"
require "crack"
require "json"
myXML = Crack::XML.parse(File.read("my.xml"))
myJSON = myXML.to_json
すべての属性を保持する場合は、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
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
の単純な派生物です。
速度を探しているなら、 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
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