0
我正在製作一個爬行器,解析Gantz漫畫上的圖像,並在http://manga.bleachexile.com/gantz-chapter-1.html處開啓。Ruby open-uri,打開png網址時返回錯誤
我取得過成功,直到我的履帶試圖打開一個圖像(上CHAPT 273):
壞URI(是不是URI):http://static.bleachexile.com/manga/gantz/273/Gantz[0273]_p001[Whatever-Illuminati].png
但這網址有效我想,因爲我可以從Firefox打開..任何想法?
部分代碼:
img_link = nav.page.image_urls.find {|x| x.include?("manga/gantz")}
img_name = RAILS_ROOT+"/public/#{nome}/#{cap}/"+nome+((template).sub('::cap::', cap.to_s).sub('::pag::', i.to_s))
img = File.new(img_name, 'w')
img.write(open(img_link) {|f| f.read})
img.close
這個答案剛剛完美! – 2010-02-26 15:30:26