我写了一个小的网络爬虫,并且知道响应是一个zip文件。
以我对golang编程的有限经验,我只知道如何解压缩现有文件。
是否可以将Response.Body解压缩到内存中而无需事先将其保存在硬盘中?
最佳答案
更新答案以在内存中处理Zip文件响应正文。
注意:确保您有足够的内存来处理zip文件。
package main
import (
"archive/zip"
"bytes"
"fmt"
"io/ioutil"
"log"
"net/http"
)
func main() {
resp, err := http.Get("zip file url")
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
log.Fatal(err)
}
zipReader, err := zip.NewReader(bytes.NewReader(body), int64(len(body)))
if err != nil {
log.Fatal(err)
}
// Read all the files from zip archive
for _, zipFile := range zipReader.File {
fmt.Println("Reading file:", zipFile.Name)
unzippedFileBytes, err := readZipFile(zipFile)
if err != nil {
log.Println(err)
continue
}
_ = unzippedFileBytes // this is unzipped file bytes
}
}
func readZipFile(zf *zip.File) ([]byte, error) {
f, err := zf.Open()
if err != nil {
return nil, err
}
defer f.Close()
return ioutil.ReadAll(f)
}
默认情况下,Go HTTP客户端会自动处理Gzip响应。典型的读取和关闭响应主体也是如此。
但是有一个陷阱。
// Reference https://github.com/golang/go/blob/master/src/net/http/transport.go
//
// DisableCompression, if true, prevents the Transport from
// requesting compression with an "Accept-Encoding: gzip"
// request header when the Request contains no existing
// Accept-Encoding value. If the Transport requests gzip on
// its own and gets a gzipped response, it's transparently
// decoded in the Response.Body. However, if the user
// explicitly requested gzip it is not automatically
// uncompressed.
DisableCompression bool
这是什么意思?如果您在请求中手动添加 header
Accept-Encoding: gzip
,则必须自己处理Gzip响应正文。例如 -
reader, err := gzip.NewReader(resp.Body)
if err != nil {
log.Fatal(err)
}
defer reader.Close()
body, err := ioutil.ReadAll(reader)
if err != nil {
log.Fatal(err)
}
fmt.Println(string(body))
关于golang解压缩Response.Body,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50539118/