清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
require 'net/http'
Net::HTTP.start("www.google.com.hk") { |http|
resp = http.get("/images/srpr/nav_logo27.png")
open("D:/test.png", "wb") { |file|
file.write(resp.body)
}
}
puts "OK"