用Go解码gZip json

时间:2016-08-16 18:27:24

标签: json go gzip

作为Go新手,我很难确定问题区域,但希望能给你一些事实会有所帮助。

我正在使用API​​将其Content-Encoding作为gzip返回。我写了以下内容来编码我的响应结构:

reader, err = gzip.NewReader(resp.Body)
defer reader.Close()

// print to standard out
//_, err = io.Copy(os.Stdout, reader)
//if err != nil {
//  log.Fatal(err)
//}

// Decode the response into our tescoResponse struct
var response TescoResponse
err := json.NewDecoder(reader).Decode(&response)

为简洁起见,我删除了错误处理,但感兴趣的是,如果我将打印取消注释到stdout,我会得到预期的结果。但是,解码并不能满足我的期望。有什么指针吗?是否必须将结构精确映射到响应??

以下是完整示例: https://play.golang.org/p/4eCuXxXm3T

2 个答案:

答案 0 :(得分:2)

From the documenation

  

DisableCompression,如果为true,则阻止传输请求   压缩时使用“Accept-Encoding:gzip”请求标头   请求不包含现有的Accept-Encoding值。如果运输   请求gzip自己并获取一个gzip响应,它是   在Response.Body中透明地解码。但是,如果是用户   明确请求gzip它不会自动解压缩。

建议的解决方案:

type gzreadCloser struct {
    *gzip.Reader
    io.Closer
}

func (gz gzreadCloser) Close() error {
    return gz.Closer.Close()
}

//然后在你的http电话....

    if resp.Header.Get("Content-Encoding") == "gzip" {
        resp.Header.Del("Content-Length")
        zr, err := gzip.NewReader(resp.Body)
        if err != nil {
            return nil, err
        }
        resp.Body = gzreadCloser{zr, resp.Body}
    }

// then you will be able to decode the json transparently

if err := json.NewDecoder(resp.Body).Decode(&response); err != nil {

}

来自您的代码的改编解决方案:https://play.golang.org/p/Vt07y_xgak

答案 1 :(得分:-1)

正如@icza在评论中提到的,不需要解码,因为gzip阅读器在您阅读时会自动解码。也许试试:

ubs := make([]byte, len) // check Content-Length header to set len
n, err := reader.Read(ubs)
err := json.Unmarshal(ubs, &response)