dsfo22654 2013-06-03 05:46
浏览 330
已采纳

如何使用“ compress / gzip”包对文件进行gzip压缩?

I'm new to Go, and can't figure out how to use the compress/gzip package to my advantage. Basically, I just want to write something to a file, gzip it and read it directly from the zipped format through another script. I would really appreciate if someone could give me an example on how to do this.

  • 写回答

5条回答 默认 最新

  • dongsha7215 2013-06-03 06:00
    关注

    All the compress packages implement the same interface. You would use something like this to compress:

    var b bytes.Buffer
    w := gzip.NewWriter(&b)
    w.Write([]byte("hello, world
    "))
    w.Close()
    

    And this to unpack:

    r, err := gzip.NewReader(&b)
    io.Copy(os.Stdout, r)
    r.Close()
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 vhdl+MODELSIM
  • ¥20 simulink中怎么使用solve函数?
  • ¥30 dspbuilder中使用signalcompiler时报错Error during compilation: Fitter failed,求解决办法
  • ¥15 gwas 分析-数据质控之过滤稀有突变中出现的问题
  • ¥15 没有注册类 (异常来自 HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))
  • ¥15 知识蒸馏实战博客问题
  • ¥15 用PLC设计纸袋糊底机送料系统
  • ¥15 simulink仿真中dtc控制永磁同步电机如何控制开关频率
  • ¥15 用C语言输入方程怎么
  • ¥15 网站显示不安全连接问题