安裝
對于Ubuntu,需要安裝好 libxml2, libxslt 這兩個組件:
$ apt-get install libxml2 libxslt
然后就可以:
可選項(xiàng)
nokogiri提供了一些解析文件時的可選項(xiàng),常用的有:
- NOBLANKS : 刪除空節(jié)點(diǎn)
- NOENT : 替代實(shí)體
- NOERROR : 隱藏錯誤報告
- STRICT : 精確解析,當(dāng)解析到文件異常時拋出錯誤
- NONET : 在解析期間禁止任何網(wǎng)絡(luò)連接.
可選項(xiàng)使用方式舉例(通過塊調(diào)用):
doc = Nokogiri::XML(File.open("blossom.xml")) do |config|
config.strict.nonet
end
或者
doc = Nokogiri::XML(File.open("blossom.xml")) do |config|
config.options = Nokogiri::XML::ParseOptions::STRICT | Nokogiri::XML::ParseOptions::NONET
end
解析
可以從文件,字符串,URL等來解析。靠的是這兩個方法 Nokogiri::HTML, Nokogiri::XML:
讀取字符串:
html_doc = Nokogiri::HTML("html>body>h1>Mr. Belvedere Fan Club/h1>/body>/html>")
xml_doc = Nokogiri::XML("root>aliens>alien>name>Alf/name>/alien>/aliens>/root>")
讀取文件:
f = File.open("blossom.xml")
doc = Nokogiri::XML(f)
f.close
讀取URL:
require 'open-uri'
doc = Nokogiri::HTML(open("http://www.threescompany.com/"))
尋找節(jié)點(diǎn)
可以使用XPATH 以及 CSS selector 來搜索: 例如,給定一個XML:
books>
book>
title>Stars/title>
/book>
book>
title>Moon/title>
/book>
/books>
xpath:
@doc.xpath("http://title")
css:
修改節(jié)點(diǎn)內(nèi)容
title = @doc.css("book title").firsto
title.content = 'new title'
puts @doc.to_html
# =>
...
title>new title/title>
...
修改節(jié)點(diǎn)的結(jié)構(gòu)
first_title = @doc.at_css('title')
second_book = @doc.css('book').last
# 可以把第一個title放到第二個book中
first_title.parent = second_book
# 也可以隨意擺放。
second_book.add_next_sibling(first_title)
# 也可以修改對應(yīng)的class
first_title.name = 'h2'
first_title['class']='red_color'
puts @doc.to_html
# => h2 class='red_color'>.../h2>
# 也可以新建一個node
third_book = Nokogiri::XML::Node.new 'book', @doc
third_book.content = 'I am the third book'
second_book.add_next_sibling third_book
puts @doc.to_html
# =>
...
books>
...
book>I am the third book/book>
/books>
您可能感興趣的文章:- Ruby中XML格式數(shù)據(jù)處理庫REXML的使用方法指南
- 實(shí)例解析Ruby程序中調(diào)用REXML來解析XML格式數(shù)據(jù)的用法
- Ruby使用REXML庫來解析xml格式數(shù)據(jù)的方法
- Ruby程序中創(chuàng)建和解析XML文件的方法
- 在Ruby中處理XML和XSLT以及XPath的簡單教程
- Ruby的XML格式數(shù)據(jù)解析庫Nokogiri的使用進(jìn)階