REXML 是一個完全用ruby寫的processor ,他有多種api,其中兩個經(jīng)典的api是通過DOM-like 和SAX-like 來進(jìn)行區(qū)分的。第一種是將整個文件讀進(jìn)內(nèi)存,然后存儲為一個分層的形式(也就是一棵樹了).而第二種是"parse as you go",當(dāng)你的文件很大,并且內(nèi)存受到限制的時候,比較適合用這種。
rexml具有如下特點(diǎn):
- 100%用ruby編寫
- 可以用來解析SAX和DOM
- 輕量,不足2000行代碼
- 提供完整的API支持
- ruby中內(nèi)置
下面我們來看看如何使用它,假設(shè)我們有如下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 REXML
xmlfile = File.new("movies.xml")
xmldoc = Document.new(xmlfile)
root = xmldoc.root
puts "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 REXML
xmlfile = File.new("movies.xml")
xmldoc = Document.new(xmlfile)
movie = XPath.first(xmldoc, "http://movie")
p movie
XPath.each(xmldoc, "http://type") { |e| puts e.text }
names = XPath.match(xmldoc, "http://format").map {|x| x.text }
p names
以備不時之需!
PS:關(guān)于REXML的安全問題
Ruby官方網(wǎng)站在8月23日發(fā)布了安全通告:http://www.ruby-lang.org/en/news/2008/08/23/dos-vulnerability-in-rexml/,在Ruby當(dāng)前使用的XML解析庫REXML在解析具有嵌套遞歸元素的XML文件的時候,將會出現(xiàn)拒絕服務(wù)攻擊的缺陷,導(dǎo)致服務(wù)器資源耗盡!
凡是在Rails應(yīng)用程序當(dāng)中使用到了XML文件解析功能的都存在上述缺陷,需要進(jìn)行修復(fù)。在Rails當(dāng)中的修復(fù)辦法如下:
1、Rails2.0.2和以前的老版本
下載修復(fù)文件,拷貝到RAILS_ROOT/lib目錄下,并且在environment.rb當(dāng)中加入語句
require ‘rexml-expansion-fix'
2、Rails 2.1.0以上版本
下載修復(fù)文件,拷貝到RAILS_ROOT/config/initializers目錄下即可。
您可能感興趣的文章:- Ruby中使用Nokogiri包來操作XML格式數(shù)據(jù)的教程
- Ruby中XML格式數(shù)據(jù)處理庫REXML的使用方法指南
- 實(shí)例解析Ruby程序中調(diào)用REXML來解析XML格式數(shù)據(jù)的用法
- Ruby程序中創(chuàng)建和解析XML文件的方法
- 在Ruby中處理XML和XSLT以及XPath的簡單教程
- Ruby的XML格式數(shù)據(jù)解析庫Nokogiri的使用進(jìn)階