本文简要介绍ruby语言中 Zlib::Inflate.inflate
的用法。
用法
inflate(string)
Zlib::Inflate.inflate(string)
解压缩 string
。如果解压缩需要预设字典,则引发 Zlib::NeedDict
异常。
这个方法几乎等同于下面的代码:
def inflate(string)
zstream = Zlib::Inflate.new
buf = zstream.inflate(string)
zstream.finish
zstream.close
buf
end
另见 Zlib.deflate
相关用法
- Ruby Inflate.new用法及代码示例
- Ruby Inflate.sync_point?用法及代码示例
- Ruby Integer.nobits?用法及代码示例
- Ruby Integer lcm()用法及代码示例
- Ruby Integer.self >=用法及代码示例
- Ruby Integer.self >>用法及代码示例
- Ruby Integer.next用法及代码示例
- Ruby Integer.self ** numeric用法及代码示例
- Ruby Integer integer?用法及代码示例
- Ruby Integer.truncate用法及代码示例
- Ruby Integer digits用法及代码示例
- Ruby Integer divmod()用法及代码示例
- Ruby Integer floor()用法及代码示例
- Ruby Integer.sqrt用法及代码示例
- Ruby Integer to_f用法及代码示例
- Ruby Integer to_s用法及代码示例
- Ruby Integer.bit_length用法及代码示例
- Ruby InstructionSequence.base_label用法及代码示例
- Ruby Integer times用法及代码示例
- Ruby Integer truncate()用法及代码示例
- Ruby Integer remainder()用法及代码示例
- Ruby Integer.floor用法及代码示例
- Ruby Integer.pred用法及代码示例
- Ruby Integer.gcd用法及代码示例
- Ruby Integer fdiv()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Inflate.inflate。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。