在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
网络XML地址:http://api.search.yahoo.com/WebSearchService/V1/webSearch?appid=YahooDemo&query=madonna&results=2 内容如下:
解析XML代码: require 'net/http' #处理超文本传输协议HTTP的库 url='http://api.search.yahoo.com/WebSearchService/V1/webSearch?appid=YahooDemo&query=madonna&results=2' xml_data = Net::HTTP.get_response(URI.parse(url)).body # 获取XML数据 doc = REXML::Document.new(xml_data) # 析取XML事件信息 titles,links = [],[] doc.elements.each('ResultSet/Result/Title') do |ele| #获取Title值 doc.elements.each('ResultSet/Result/Url') do |ele| #获取Url值 titles.each_with_index do |title, idx|
输出结果: Madonna => http://www.madonna.com/
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论