码迷,mamicode.com
首页 > Web开发 > 详细

golang http下载文件

时间:2019-11-25 00:16:28      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:adf   Golan   util   ram   name   res   open   out   ams   

func LoadFile(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
	url:= p.ByName("url")
	file, err:= os.Open("./" + url)
	if err!= nil {
		httputil.WriteErrorResponse(w, "文件不存在")
		return
	}
	defer file.Close()
	buff, _ := ioutil.ReadAll(file)
	w.Write(buff)
}

  

 

golang http下载文件

标签:adf   Golan   util   ram   name   res   open   out   ams   

原文地址:https://www.cnblogs.com/lemonzwt/p/11925081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!