欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

golang實現(xiàn)httpserver提供文件下載功能

簡介

成都創(chuàng)新互聯(lián)是專業(yè)的臨城網(wǎng)站建設(shè)公司,臨城接單;提供成都網(wǎng)站制作、網(wǎng)站設(shè)計,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行臨城網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

Go(又稱Golang)是Google開發(fā)的一種靜態(tài)強類型、編譯型、并發(fā)型,并具有垃圾回收功能的編程語言。

羅伯特·格瑞史莫(Robert Griesemer),羅勃·派克(Rob Pike)及肯·湯普遜(Ken Thompson)于2007年9月開始設(shè)計Go,稍后Ian Lance Taylor、Russ Cox加入項目。Go是基于Inferno操作系統(tǒng)所開發(fā)的。Go于2009年11月正式宣布推出,成為開放源代碼項目,并在Linux及Mac OS X平臺上進行了實現(xiàn),后來追加了Windows系統(tǒng)下的實現(xiàn)。在2016年,Go被軟件評價公司TIOBE 選為“TIOBE 2016 年最佳語言”。 目前,Go每半年發(fā)布一個二級版本(即從a.x升級到a.y)。

go就是golang 全名是 golang 簡稱go語言

golang實現(xiàn)http server提供文件下載功能,具體代碼如下所示:

func FileDownload(w http.ResponseWriter, r *http.Request) {
  filename := get_filename_from_request(r)

  file, _ := os.Open(filename)
  defer file.Close()

  fileHeader := make([]byte, 512)
  file.Read(fileHeader)

  fileStat, _ := file.Stat()

  w.Header().Set("Content-Disposition", "attachment; filename=" + filename)
  w.Header().Set("Content-Type", http.DetectContentType(fileHeader))
  w.Header().Set("Content-Length", strconv.FormatInt(fileStat.Size(), 10))

  file.Seek(0, 0)
  io.Copy(w, file)

  return
}

ps:下面看下golang最簡單的http server

簡單的hello world

package main
import (
 "fmt"
 "io"
 "net/http"
)
func main() {
 http.HandleFunc("/", helloWorld)
 e:=http.ListenAndServe(":8888",nil)
 if e!=nil{
 fmt.Println(e.Error())
 }
}
func helloWorld(w http.ResponseWriter, r *http.Request) {
 str:="Hello World"
 n,e:=io.WriteString(w, str)
 if e!=nil{
 fmt.Println(e.Error())
 } else {
 fmt.Println(n," " ,len(str))
 }
}

總結(jié)

以上所述是小編給大家介紹的golang實現(xiàn)http server提供文件下載功能,希望對大家有所幫助!

網(wǎng)頁名稱:golang實現(xiàn)httpserver提供文件下載功能
網(wǎng)站路徑:http://chinadenli.net/article6/jijpig.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁設(shè)計公司Google面包屑導(dǎo)航網(wǎng)站設(shè)計公司標(biāo)簽優(yōu)化網(wǎng)站營銷

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)