在 Ruby 中处理 Zip 文件

发布于 2024-09-05 17:35:36 字数 372 浏览 6 评论 0原文

可能的重复:
如何在 ruby​​ 中仅在内存中创建 zip 文件?< /a>

有人知道有一个开源 Ruby 库允许用户在内存中处理 zip 文件条目吗?即不将它们写入磁盘

Possible Duplicate:
How to create zip file only in memory in ruby?

Is anybody aware of a open source Ruby library that allows the user to process zip file entries in memory? i.e. without writing them to disk

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

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

发布评论

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

评论(1

冰雪之触 2024-09-12 17:35:36

您好,我正在使用 rubyzip 库。你可以这样做:

Zip::ZipFile.foreach(file) do |entry|
    istream = entry.get_input_stream
    data = istream.read
    #...
end

Hi I'm using rubyzip library. You can do something like this:

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