如何使用 ruby​​zip 库获取压缩文件的内容?

发布于 2024-07-07 12:38:51 字数 519 浏览 7 评论 0原文

我正在尝试提取上传的 zip 文件并将其内容存储在数据库中,每个文件一个条目。 rubyzip 库几乎没有有用的文档。

有一个资产表,其中包含键:string(文件名)和数据:binary(文件内容)。

我正在使用 ruby​​zip 库,并且已经做到了这一点:

Zip::ZipFile.open(@file_data.local_path) do |zipfile|
  zipfile.each do |entry|
    next if entry.name =~ /__MACOSX/ or entry.name =~ /\.DS_Store/ or !entry.file?

    asset = self.assets.build
    asset.key = entry.name
    asset.data = ??  # what goes here?
  end
end

How can I set the data from a ZipEntry? 我必须使用临时文件吗?

I'm trying to extract an uploaded zip file and store its contents in the database, one entry per file. The rubyzip library has nearly no useful documentation.

There is an assets table that has key :string (file name) and data :binary (file contents).

I'm using the rubyzip library, and have made it as far as this:

Zip::ZipFile.open(@file_data.local_path) do |zipfile|
  zipfile.each do |entry|
    next if entry.name =~ /__MACOSX/ or entry.name =~ /\.DS_Store/ or !entry.file?

    asset = self.assets.build
    asset.key = entry.name
    asset.data = ??  # what goes here?
  end
end

How can I set the data from a ZipEntry? Do I have to use a temp file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

追星践月 2024-07-14 12:38:51

发现了一个更简单的方法:

asset.data = entry.get_input_stream.read

Found an even more simple way:

asset.data = entry.get_input_stream.read
冷默言语 2024-07-14 12:38:51

看来您可以使用这样的 read_local_entry 方法:

asset.data = entry.read_local_entry {|z| z.read }

或者,您可以使用此方法保存条目:

data = entry.extract "#{RAILS_ROOT}/#{entry.name}"
asset.data = File.read("#{RAILS_ROOT}/#{entry.name}")

我不确定这些方法将如何工作,但也许它们会帮助您找到正确的方法(如果这是不是吧)。

并且,还有一种选择:

asset.data = zipfile.file.read(entry.name)

It would seem that you can either use the read_local_entry method like this:

asset.data = entry.read_local_entry {|z| z.read }

Or, you could save the entry with this method:

data = entry.extract "#{RAILS_ROOT}/#{entry.name}"
asset.data = File.read("#{RAILS_ROOT}/#{entry.name}")

I'm not sure how those will work, but maybe they'll help you find the right method (if this ain't it).

And, one more alternative:

asset.data = zipfile.file.read(entry.name)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文