Go语言文件下载

一.文件下载简介

  • 文件下载总体步骤
    • 客户端向服务端发起请求,请求参数包含要下载文件的名称
    • 服务器接收到客户端请求后把文件设置到响应对象中,响应给客户端浏览器
  • 载时需要设置的响应头信息
    • Content-Type: 内容MIME类型
    • application/octet-stream 任意类型
  • Content-Disposition:客户端对内容的操作方式
    • inline 默认值,表示浏览器能解析就解析,不能解析下载
    • attachment;filename=下载时显示的文件名 ,客户端浏览器恒下载

二.代码

  • 在view/index.html中
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <a href="download?filename=abc.png">下载</a>
</body>
</html>
  • 在main.go中编写
package main

import (
   "net/http"
   "html/template"
   "io/ioutil"
)

func showDownloadPage(rw http.ResponseWriter,r *http.Request){
   t,_:=template.ParseFiles("template/html/download.html")
   t.Execute(rw,nil)
}
func download(rw http.ResponseWriter,r *http.Request){
   //获取请求参数
   fn:=r.FormValue("filename")
   //设置响应头
   header:=rw.Header()
   header.Add("Content-Type","application/octet-stream")
   header.Add("Content-Disposition","attachment;filename="+fn)
   //使用ioutil包读取文件
   b,_:=ioutil.ReadFile("D:/"+fn)
   //写入到响应流中
   rw.Write(b)
}

func main() {
   server:=http.Server{Addr:"localhost:8899"}

   http.HandleFunc("/showdownload",showDownloadPage)
   http.HandleFunc("/download",download)

   server.ListenAndServe()
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

书香水墨

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值