ubuntu, ror, jQuery, css, website memo
太嫩, 沒啥心得, 用來紀錄每天學的
2009年1月16日 星期五
ruby gzip, stringio
string io api
gzip api
我們想要壓縮一下sting, 可以用
#因為GzipWriter should be used with an instance of IO, or IO-like, object.
#所以我們弄個StringIO來玩
output = StringIO.new
gz = Zlib::GzipWriter.new(output)
gz.write 'blahblah'
gz.close
output.string #便是我們要的壓縮過後的string
output = StringIO.new
gz = Zlib::GzipWriter.new(output)
gz.write(t.to_json)
gz.close
render :text => output.string, :content_type => 'application/x-gzip' and return
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言