首页 > 编程 > Ruby > 正文

实现ruby网页图片抓取的方法

2020-02-24 15:37:48
字体:
来源:转载
供稿:网友

用Java实现的网络图像爬虫,其实实现代码非常简单,它会在几分钟内实现,本文是武林技术频道小编带给大家的实现ruby网页图片抓取的方法,希望对你有所帮助!

module CommonHelper  require 'nokogiri' require 'open-uri'  def down_load_xmz  site_url = "http://www.xxx.com"   for index_page in 1..141   doc_html = Nokogiri::HTML(open(site_url+'/share/comment-page-'+index_page.to_s))   doc_html.css("#comments p img").each do |item_img|    puts item_img[:src]    download_img(item_img[:src])   end  end end  ########下载图片 def download_img(img_url)  begin   img_file = open(img_url) { |f| f.read }   file_name = img_url.split('/').last   #puts file_name   open("public/meizi/"+file_name, "wb") { |f| f.write(img_file) }   return "/public/meizi/"+file_name  rescue => err   puts err   return ''  end end end

通过以上的介绍,相信大家已经明了实现ruby网页图片抓取的方法,不过在实际操作的时候,程序员一定要谨慎,选择武林技术频道网进行学习,会让您受益匪浅哦!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选