本文武林技術(shù)頻道將與您共享Ruby實(shí)現(xiàn)網(wǎng)頁(yè)圖片抓取的實(shí)例演示,其實(shí)它非常簡(jiǎn)單和實(shí)用,可以被需要它的小伙伴參考,希望對(duì)你學(xué)習(xí)這方面的知識(shí)有幫助。
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實(shí)現(xiàn)網(wǎng)頁(yè)圖片抓取的實(shí)例演示大家了解的怎樣了呢?實(shí)例演示其實(shí)對(duì)實(shí)際操作來(lái)說(shuō)是幫助最大的,如果有任何想法,歡迎大家踴躍討論。
新聞熱點(diǎn)
疑難解答
圖片精選