真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何使用golang自帶net/http接收文件

這篇文章主要介紹“如何使用golang自帶net/http接收文件”,在日常操作中,相信很多人在如何使用golang自帶net/http接收文件問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”如何使用golang自帶net/http接收文件”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

創(chuàng)新互聯(lián)是一家專業(yè)提供江城企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、HTML5建站、小程序制作等業(yè)務(wù)。10年已為江城眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進(jìn)行中。

SaveFile (處理提交文件)

package main

import (
	"fmt"
	"io"
	"io/ioutil"
	"log"
	"net/http"
	"os"
)

//讀取html文件
func ReadHtmlFile(filePath string) ([]byte, error) {

	file, err := os.Open(filePath)
	if err != nil {
		log.Println("open file err is ", err)
		return nil, err
	}
	htmlByte, err := ioutil.ReadAll(file)

	if err != nil {
		log.Println("pase html err is ", err)
		return nil, err
	}

	return htmlByte, err
}

//將html文件輸出
func OutHtml(htmlbytes []byte) http.Handler {

	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		w.Write(htmlbytes)
	})
}

//將post接收到的文件,保存到指定目錄中
func SaveFile(toFile string) http.Handler { //tofile 指定保存目錄

	return http.HandlerFunc(
		func(w http.ResponseWriter, r *http.Request) {
			if r.Method == "POST" {
				file, _, err := r.FormFile("attachment") //從 form中,接收提交來(lái)的文件
				if err != nil {
					log.Println(err)
					return
				}
				//log.Println(file)
				defer file.Close()
				f, err := os.OpenFile(toFile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0666) //如果文件不存在,則創(chuàng)建
				if err != nil {
					log.Println(err)
					return
				}

				defer f.Close()
				_, err = io.Copy(f, file) //將post提交上來(lái)的文件,重定向到f中

				if err != nil {
					log.Println(err)
				}
			}
		})
}

func main() {

	htmlbyte, err := ReadHtmlFile("D:\\VsCodeProject\\NetHttpGo\\src\\static\\index.html")

	if err != nil {
		log.Println(err)
	}

	outhtml := OutHtml(htmlbyte)
	saveFile := SaveFile("D:\\VsCodeProject\\NetHttpGo\\src\\a.jpg")

	http.Handle("/", outhtml)

	http.Handle("/file", saveFile)

	fmt.Println("listening........")

	http.ListenAndServe(":8081", nil)

}

到此,關(guān)于“如何使用golang自帶net/http接收文件”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!


名稱欄目:如何使用golang自帶net/http接收文件
網(wǎng)頁(yè)網(wǎng)址:http://weahome.cn/article/ihjsss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部