哪个 zip 库可以与 Ruby 1.9.2 配合良好?

发布于 2024-11-05 14:36:33 字数 119 浏览 0 评论 0原文

我之前在 Ruby 1.8.7 中使用过 ruby​​zip gem,但我听说 ruby​​zip 不能很好地与 ruby​​ 1.9.2 配合使用。

哪些 zip 库可以与 Ruby 1.9.2 配合良好?

I used the rubyzip gem in Ruby 1.8.7 before, but I heard rubyzip doesn't work well with ruby 1.9.2.

What zip libraries work well with Ruby 1.9.2?

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

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

发布评论

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

评论(3

病毒体 2024-11-12 14:36:33

您是否真的尝试过在 1.9.2 中使用 rubyzip ?似乎对我来说效果很好:

>> RUBY_VERSION 
#=> "1.9.2"
>> require 'zip/zip' 
#=> true
>> Zip::ZipFile.foreach(File.expand_path("~/Downloads/Archive.zip")) { |f| p f } 
#=> [bartxt, footxt]
bar.txt
foo.txt

Have you actually tried using rubyzip with 1.9.2? Seems to work fine for me:

>> RUBY_VERSION 
#=> "1.9.2"
>> require 'zip/zip' 
#=> true
>> Zip::ZipFile.foreach(File.expand_path("~/Downloads/Archive.zip")) { |f| p f } 
#=> [bartxt, footxt]
bar.txt
foo.txt
做个少女永远怀春 2024-11-12 14:36:33

我也在 Ruby 1.8.7 中使用了 ruby​​zip gem。对于 Ruby 1.9.x,您需要使用 0.9.5 或更高版本。工作没有任何问题。

I used rubyzip gem in Ruby 1.8.7 also. For Ruby 1.9.x you need to use version 0.9.5 or higher. Works without any problems.

韵柒 2024-11-12 14:36:33

我发现 zip 它说它与 1.9.1 兼容 我认为它在 1.9 中不会有任何问题.2

I found zip it says it's compatible with 1.9.1 I don't think it would have any issues in 1.9.2

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