gpt4 book ai didi

file - 将 DumpResponse 写入文件后解压缩

转载 作者:数据小太阳 更新时间:2023-10-29 03:23:10 25 4
gpt4 key购买 nike

我有以下代码:

dump, err := httputil.DumpResponse(response, true)
ioutil.WriteFile(response.Request.Host+".txt", dump, 0644)

我创建了以下文件 example.com.txt:

HTTP/1.1 200 OK
Transfer-Encoding: chunked
Accept-Ranges: bytes
Age: 0
Cache-Control: public
Content-Encoding: gzip
Content-Type: text/xml
Date: Sun, 01 Apr 2018 08:52:39 GMT
Last-Modified: Thu, 01 Mar 2018 13:30:10 GMT
Server: Microsoft-IIS/7.5
Vary: Accept-Encoding
Via: 1.1 varnish

8000
� �`I�����B�⓿�O����?����...

现在如何从文件中读取 gzip 压缩后的内容?

最佳答案

您可以将其反序列化为 http.Response,然后 'ungzip' 正文:

func main()  {
file, _ := os.Open(`/home/your/path/file.txt`)
response, _ := http.ReadResponse(bufio.NewReader(file), nil)
reader, _ := gzip.NewReader(response.Body)
ungzipped, _ := ioutil.ReadAll(reader)
fmt.Println(string(ungzipped))
}

关于file - 将 DumpResponse 写入文件后解压缩,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49596181/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com