gpt4 book ai didi

ruby 文件 IO : Can't open url as File object

转载 作者:数据小太阳 更新时间:2023-10-29 07:29:56 26 4
gpt4 key购买 nike

我的代码中有一个函数,它接受一个表示图像 url 的字符串,并从该字符串创建一个 File 对象,以附加到推文。这似乎在大约 90% 的时间都有效,但偶尔会失败。

require 'open-uri'
attachment_url = "https://s3.amazonaws.com/FirmPlay/photos/images/000/002/443/medium/applying_too_many_jobs_-_daniel.jpg?1448392757"
image = File.new(open(attachment_url))

如果我运行上面的代码,它会返回 TypeError: no implicit conversion of StringIO into String。如果我将 open(attachment_url) 更改为 open(attachment_url).read,我会得到 ArgumentError: string contains null byte。我也试过像这样从文件中删除空字节,但这也没有什么区别。

image = File.new(open(attachment_url).read.gsub("\u0000", ''))

现在,如果我用不同的图像尝试原始代码,例如下面的图像,它工作正常。它按预期返回一个 File 对象:

attachment_url = "https://s3.amazonaws.com/FirmPlay/photos/images/000/002/157/medium/mike_4.jpg"

我想这可能与原始 url 中的参数有关,所以我将其删除,但没有任何区别。如果我在 Chrome 中打开这些图像,它们似乎没问题。

我不确定我在这里遗漏了什么。我该如何解决这个问题?

谢谢!

更新

这是我应用中的工作代码:

filename = self.attachment_url.split(/[\/]/)[-1].split('?')[0]
stream = open(self.attachment_url)
image = File.open(filename, 'w+b') do |file|
stream.respond_to?(:read) ? IO.copy_stream(stream, file) : file.write(stream)
open(file)
end

Jordan 的答案有效,除了调用 File.new 返回一个空的 File 对象,而 File.open 返回一个 File 对象包含来自 stream 的图像数据。

最佳答案

你得到 TypeError: no implicit conversion of StringIO into String 的原因是 open 有时返回一个 String 对象,有时返回一个 StringIO 对象,这是不幸的和困惑。它的作用取决于文件的大小。有关详细信息,请参阅此答案:open-uri returning ASCII-8BIT from webpage encoded in iso-8859 (虽然我不建议使用其中提到的 ensure-encoding gem,因为它自 2010 年以来就没有更新过,而 Ruby 从那时起就进行了重大的编码相关更改。)

您收到 ArgumentError: string contains null byte 的原因是您试图将图像数据作为第一个参数传递给 File.new:

image = File.new(open(attachment_url))

File.new 的第一个参数应该是文件名,大多数系统的文件名中不允许空字节。试试这个:

image_data = open(attachment_url)

filename = 'some-filename.jpg'

File.new(filename, 'wb') do |file|
if image_data.respond_to?(:read)
IO.copy_stream(image_data, file)
else
file.write(image_data)
end
end

上面的代码打开文件(如果文件不存在则创建它;'wb' 中的 b 告诉 Ruby 您将要写入二进制数据) ,然后使用 IO.copy_stream 将数据从 image_data 写入它,如果它是 StreamIO 对象或 File#write 否则,然后再次关闭文件.

关于 ruby 文件 IO : Can't open url as File object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34161221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com