Ruby使用REXML庫來解析xml格式資料的方法_ruby專題

來源:互聯網
上載者:User

REXML 是一個完全用ruby寫的processor ,他有多種api,其中兩個經典的api是通過DOM-like 和SAX-like 來進行區分的。第一種是將整個檔案讀進記憶體,然後儲存為一個分層的形式(也就是一棵樹了).而第二種是"parse as you go",當你的檔案很大,並且記憶體受到限制的時候,比較適合用這種。
rexml具有如下特點:

  • 100%用ruby編寫
  • 可以用來解析SAX和DOM
  • 輕量,不足2000行代碼
  • 提供完整的API支援
  • ruby中內建

下面我們來看看如何使用它,假設我們有如下xml檔案:

<collection shelf="New Arrivals"> <movie title="Enemy Behind"> <type>War, Thriller</type> <format>DVD</format> <year>2003</year> <rating>PG</rating> <stars>10</stars> <description>Talk about a US-Japan war</description> </movie> <movie title="Transformers"> <type>Anime, Science Fiction</type> <format>DVD</format> <year>1989</year> <rating>R</rating> <stars>8</stars> <description>A schientific fiction</description> </movie> <movie title="Trigun"> <type>Anime, Action</type> <format>DVD</format> <episodes>4</episodes> <rating>PG</rating> <stars>10</stars> <description>Vash the Stampede!</description> </movie> <movie title="Ishtar"> <type>Comedy</type> <format>VHS</format> <rating>PG</rating> <stars>2</stars> <description>Viewable boredom</description> </movie></collection>

解析DOM:

require 'rexml/document'include REXMLxmlfile = File.new("movies.xml")xmldoc = Document.new(xmlfile)root = xmldoc.rootputs "Root element : " + root.attributes["shelf"]xmldoc.elements.each("collection/movie"){ |e| puts "Movie Title : " + e.attributes["title"]}xmldoc.elements.each("collection/movie/type") { |e| puts "Movie Type : " + e.text}xmldoc.elements.each("collection/movie/description") { |e| puts "Movie Description : " + e.text}

使用XPATH:

require 'rexml/document'include REXMLxmlfile = File.new("movies.xml")xmldoc = Document.new(xmlfile)movie = XPath.first(xmldoc, "//movie")p movieXPath.each(xmldoc, "//type") { |e| puts e.text }names = XPath.match(xmldoc, "//format").map {|x| x.text }p names

以備不時之需!

PS:關於REXML的安全問題
Ruby官方網站在8月23日發布了安全通告:http://www.ruby-lang.org/en/news/2008/08/23/dos-vulnerability-in-rexml/,在Ruby當前使用的XML解析庫REXML在解析具有嵌套遞迴元素的XML檔案的時候,將會出現拒絕服務的攻擊的缺陷,導致伺服器資源耗盡!
凡是在Rails應用程式當中使用到了XML檔案解析功能的都存在上述缺陷,需要進行修複。在Rails當中的修複辦法如下:
1、Rails2.0.2和以前的老版本
下載修複檔案,拷貝到RAILS_ROOT/lib目錄下,並且在environment.rb當中加入語句

require ‘rexml-expansion-fix'

2、Rails 2.1.0以上版本
下載修複檔案,拷貝到RAILS_ROOT/config/initializers目錄下即可。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.