Ruby Unzip String
发布时间:2020-12-17 03:00:21 所属栏目:百科 来源:网络整理
导读:我必须在 Ruby中使用压缩(常规Zip)字符串. 显然我无法用 Ruby-Zip或 Zip-Ruby保存临时文件. 解压这个字符串有什么可行的方法吗? 解决方法 rubyzip supports StringIO since version 1.1.0 require "zip"# zip is the string with the zipped contentsZip::I
我必须在
Ruby中使用压缩(常规Zip)字符串.
显然我无法用 Ruby-Zip或 Zip-Ruby保存临时文件. 解压这个字符串有什么可行的方法吗? 解决方法
rubyzip
supports StringIO since version 1.1.0
require "zip" # zip is the string with the zipped contents Zip::InputStream.open(StringIO.new(zip)) do |io| while (entry = io.get_next_entry) puts "#{entry.name}: '#{io.read}'" end end (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |