ruby – 将StringIO写入Tempfile

前端之家收集整理的这篇文章主要介绍了ruby – 将StringIO写入Tempfile前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在用红宝石从url中读取图像,而不是将其保存到Tempfile中,以便稍后处理.
require 'open-uri'

url = 'http://upload.wikimedia.org/wikipedia/commons/8/89/Robie_House.jpg'
file = Tempfile.new(['temp','.jpg'])
stringIo = open(url)
# this is part I am confused about how to save StringIO to temp file?
file.write stringIo

这是不正常的,因为temp.jpg是无效的图像.不知道如何进行这个.

谢谢

解决方法

你超级亲密:
file.binmode
file.write stringIo.read

打开(url)只是打开流阅读.在它调用.read之前,实际上并没有读取数据(然后可以传入file.write).

原文链接:https://www.f2er.com/ruby/272454.html

猜你在找的Ruby相关文章