4

在 go 中通过 HTTP 接收二进制数据的最佳方法是什么?就我而言,我想将一个 zip 文件发送到我的应用程序的 REST API。特定于 goweb 的示例会很棒,但 net/http 也很好。

4

1 回答 1

18

只需从请求正文中读取它

就像是

package main

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

func h(w http.ResponseWriter, req *http.Request) {
    buf, err := ioutil.ReadAll(req.Body)
    if err!=nil {log.Fatal("request",err)}
    fmt.Println(buf) // do whatever you want with the binary file buf
}

更合理的方法是将文件复制到某个流中

defer req.Body.Close()
f, err := ioutil.TempFile("", "my_app_prefix")
if err!=nil {log.Fatal("cannot open temp file", err)}
defer f.Close()
io.Copy(f, req.Body)
于 2012-07-30T06:59:03.323 回答