How to pipe an HTTP response to a file in Go?
来源:Golang技术栈
时间:2023-04-14 20:32:34 400浏览 收藏
从现在开始,我们要努力学习啦!今天我给大家带来《How to pipe an HTTP response to a file in Go?》,感兴趣的朋友请继续看下去吧!下文中的内容我们主要会涉及到golang等等知识点,如果在阅读本文过程中有遇到不清楚的地方,欢迎留言呀!我们一起讨论,一起学习!
问题内容
How do I convert the below code to use streams/pipes so that I don't need to
read the full content into memory? Something like:
http.Get("http://example.com/").Pipe("./data.txt")
package main import ("net/http";"io/ioutil") func main() { resp, err := http.Get("http://example.com/") check(err) defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) check(err) err = ioutil.WriteFile("./data.txt", body, 0666) check(err) } func check(e error) { if e != nil { panic(e) } }
正确答案
How about io.Copy()
? Its documentation can be found at:
http://golang.org/pkg/io/#Copy
It's pretty simple, though. Give it an io.Reader
and an io.Writer
and it
copies the data over, one small chunk at a time (e.g. not all in memory at
once).
So you might try writing something like:
func main() { resp, err := http.Get("...") check(err) defer resp.Body.Close() out, err := os.Create("filename.ext") if err != nil { // panic? } defer out.Close() io.Copy(out, resp.Body) }
I haven't tested the above; I just hacked it together quickly from your above example, but it should be close if not on the money.
今天带大家了解了golang的相关知识,希望对你有所帮助;关于Golang的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~
-
439 收藏
-
262 收藏
-
193 收藏
-
188 收藏
-
500 收藏
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习