您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)怎么在go中利用Http與Post實(shí)現(xiàn)一個(gè)文件發(fā)送功能,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
我就廢話不多說了,大家還是直接看代碼吧~
package main import ( "net/http" "net/url" "fmt" "io/ioutil" _ "io" "bytes" ) func main() { postFile() } func post() { //這是一個(gè)Post 參數(shù)會(huì)被返回的地址 strinUrl:="http://localhost:8080/aaa"`這里寫代碼片` resopne,err:= http.PostForm(strinUrl,url.Values{"num":{"456"},"num1":{"123"}}) if err !=nil { fmt.Println("err=",err) } defer func() { resopne.Body.Close() fmt.Println("finish") }() body,err:=ioutil.ReadAll(resopne.Body) if err!=nil { fmt.Println(" post err=",err) } fmt.Println(string(body)) } func postFile(){ //這是一個(gè)Post 參數(shù)會(huì)被返回的地址 strinUrl:="http://localhost:8080/aaa" byte,err:=ioutil.ReadFile("post.txt") resopne,err :=http.Post(strinUrl,"multipart/form-data",bytes.NewReader(byte)) if err !=nil { fmt.Println("err=",err) } defer func() { resopne.Body.Close() fmt.Println("finish") }() body,err:=ioutil.ReadAll(resopne.Body) if err!=nil { fmt.Println(" post err=",err) } fmt.Println(string(body)) }
水滴石穿。這里把Go Http Post 參數(shù)的函數(shù)也貼了處理主要對(duì)比兩者不同之處。
補(bǔ)充:golang爬蟲 模擬各種情況的post請(qǐng)求 文件上傳
go實(shí)現(xiàn)各種類型的post請(qǐng)求
請(qǐng)求測試地址
var ( requestPostURL string = "http://httpbin.org/post" // 接收文件的服務(wù)自己實(shí)現(xiàn)qwq // 接收一張圖片上傳 postman的key file imagePostURL string = "/imageUpload/upload" // 接收多張圖片上傳 postman的key file imageMultiPostURL string = "/imageUpload/uploads" )
說明
application/x-www-from-urlencoded,會(huì)將表單內(nèi)的數(shù)據(jù)轉(zhuǎn)換為鍵值對(duì),比如,name=java&age = 23
示例
// func postXWwwFromURLEncoded() { client := http.Client{} // 不帶任何的請(qǐng)求數(shù)據(jù)post // req, err := http.NewRequest(http.MethodPost, requestPostURL, nil) // 帶數(shù)據(jù) urlValues := url.Values{} urlValues.Add("name", "張三") urlValues.Add("age", "18") reqBody := urlValues.Encode() req, err := http.NewRequest(http.MethodPost, requestPostURL, strings.NewReader(reqBody)) if err != nil { log.Println("err") } resp, err := client.Do(req) if err != nil { log.Println("err") } defer resp.Body.Close() b, err := ioutil.ReadAll(resp.Body) if err != nil { log.Println("err") } fmt.Println(string(b)) // urlValues := url.Values{} // urlValues.Add("name","zhaofan") // urlValues.Add("age","22") // resp, _ := http.PostForm("http://httpbin.org/post",urlValues) }
說明
// 也就是入?yún)⒎绞綖閖son
// 可以上傳任意格式的文本,可以上傳text、json、xml、html
示例
func postRaw() { client := http.Client{} // 帶數(shù)據(jù) json 類型 urlValues := map[string]interface{}{ "name": "jack", "age": 18, "is_active": true, } b1, _ := json.Marshal(&urlValues) // b1, _ := json.Marshal(&urlValues) req, err := http.NewRequest(http.MethodPost, requestPostURL, bytes.NewReader(b1)) if err != nil { log.Println("err") } resp, err := client.Do(req) if err != nil { log.Println("err") } defer resp.Body.Close() b, err := ioutil.ReadAll(resp.Body) if err != nil { log.Println("err") } fmt.Println(string(b)) }
說明
// multipart/form-data
// 既可以上傳文件,也可以上傳鍵值對(duì)
// 上傳的字段是文件時(shí),會(huì)有Content-Type來說明文件類型;content-disposition
// 可以上傳多個(gè)文件
示例
// multipart/form-data 帶普通參數(shù) key-value func postFormDataWithParams() { client := http.Client{} // 不帶任何的請(qǐng)求數(shù)據(jù)post body := &bytes.Buffer{} writer := multipart.NewWriter(body) params := map[string]string{ "name": "zhangsan", "age": "12", } for key, val := range params { _ = writer.WriteField(key, val) } writer.Close() req, err := http.NewRequest(http.MethodPost, requestPostURL, body) if err != nil { log.Println("err") } resp, err := client.Do(req) if err != nil { log.Println("err") } defer resp.Body.Close() b, err := ioutil.ReadAll(resp.Body) if err != nil { log.Println("err") } fmt.Println(string(b)) }
// key:file 里面放一個(gè)文件 // multipart/form-data 傳一個(gè)文件 func postFormDataWithSingleFile() { client := http.Client{} bodyBuf := &bytes.Buffer{} bodyWrite := multipart.NewWriter(bodyBuf) file, err := os.Open("./images/img.jpg") defer file.Close() if err != nil { log.Println("err") } // file 為key fileWrite, err := bodyWrite.CreateFormFile("file", "img.jpg") _, err = io.Copy(fileWrite, file) if err != nil { log.Println("err") } bodyWrite.Close() //要關(guān)閉,會(huì)將w.w.boundary刷寫到w.writer中 // 創(chuàng)建請(qǐng)求 contentType := bodyWrite.FormDataContentType() req, err := http.NewRequest(http.MethodPost, imagePostURL, bodyBuf) if err != nil { log.Println("err") } // 設(shè)置頭 req.Header.Set("Content-Type", contentType) resp, err := client.Do(req) if err != nil { log.Println("err") } defer resp.Body.Close() b, err := ioutil.ReadAll(resp.Body) if err != nil { log.Println("err") } fmt.Println(string(b)) }
// key:file 里面放多個(gè)文件 // multipart/form-data 傳多個(gè)文件 func postFormDataWithMultipartFile() { client := http.Client{} bodyBuf := &bytes.Buffer{} bodyWrite := multipart.NewWriter(bodyBuf) images := []string{"img.jpg", "img1.jpg"} for _, val := range images { file, err := os.Open("./images/" + val) defer file.Close() if err != nil { log.Println("err") } fileWrite, err := bodyWrite.CreateFormFile("file", val) _, err = io.Copy(fileWrite, file) if err != nil { log.Println("err") } } bodyWrite.Close() //要關(guān)閉,會(huì)將w.w.boundary刷寫到w.writer中 // 創(chuàng)建請(qǐng)求 req, err := http.NewRequest(http.MethodPost, imagePostURL, bodyBuf) if err != nil { log.Println("err") } // 設(shè)置頭 contentType := bodyWrite.FormDataContentType() req.Header.Set("Content-Type", contentType) resp, err := client.Do(req) if err != nil { log.Println("err") } defer resp.Body.Close() b, err := ioutil.ReadAll(resp.Body) if err != nil { log.Println("err") } fmt.Println(string(b)) }
// Content-Type:application/octet-stream,從字面意思得知,只可以上傳二進(jìn)制數(shù)據(jù),通常用來上傳文件, // 由于沒有鍵值,所以,一次只能上傳一個(gè)文件 func postBinary() { }
上述就是小編為大家分享的怎么在go中利用Http與Post實(shí)現(xiàn)一個(gè)文件發(fā)送功能了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。