如何使用 Golang net/http 服务器接收上传的文件?

新手上路,请多包涵

我正在玩 Muxnet/http 。最近,我正在尝试使用一个端点来获得一个简单的服务器来接受文件上传。

这是我到目前为止的代码:

服务器.go

 package main

import (
    "fmt"
    "github.com/gorilla/mux"
    "log"
    "net/http"
)

func main() {
    router := mux.NewRouter()
    router.
        Path("/upload").
        Methods("POST").
        HandlerFunc(UploadCsv)
    fmt.Println("Starting")
    log.Fatal(http.ListenAndServe(":8080", router))
}

端点.go

 package main

import (
    "fmt"
    "net/http"
)

func UploadFile(w http.ResponseWriter, r *http.Request) {
    err := r.ParseMultipartForm(5 * 1024 * 1024)
    if err != nil {
        panic(err)
    }

    fmt.Println(r.FormValue("fileupload"))
}

我想我已经将问题缩小到实际从 UploadFile 中的请求中检索正文。当我运行此 cURL 命令时:

 curl http://localhost:8080/upload -F "fileupload=@test.txt" -vvv

我得到一个空响应(如预期的那样;我没有打印到 ResponseWriter ),但我只是在运行服务器的提示符处打印了一个新的(空)行,而不是请求正文。

我将文件作为多部分发送(AFAIK,通过在 cURL 中使用 -F 而不是 -d 暗示),并且 cURL 的详细输出显示已发送 502 个字节:

 $ curl http://localhost:8080/upload -F "fileupload=@test.txt" -vvv
*   Trying ::1...
* TCP_NODELAY set
* Connected to localhost (::1) port 8080 (#0)
> POST /upload HTTP/1.1
> Host: localhost:8080
> User-Agent: curl/7.51.0
> Accept: */*
> Content-Length: 520
> Expect: 100-continue
> Content-Type: multipart/form-data; boundary=------------------------b578878d86779dc5
>
< HTTP/1.1 100 Continue
< HTTP/1.1 200 OK
< Date: Fri, 18 Nov 2016 19:01:50 GMT
< Content-Length: 0
< Content-Type: text/plain; charset=utf-8
<
* Curl_http_done: called premature == 0
* Connection #0 to host localhost left intact

在 Go 中使用 net/http 服务器接收作为多部分表单数据上传的文件的正确方法是什么?

原文由 user7179784 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1k
1 个回答

这是一个简单的例子

func ReceiveFile(w http.ResponseWriter, r *http.Request) {
    r.ParseMultipartForm(32 << 20) // limit your max input length!
    var buf bytes.Buffer
    // in your case file would be fileupload
    file, header, err := r.FormFile("file")
    if err != nil {
        panic(err)
    }
    defer file.Close()
    name := strings.Split(header.Filename, ".")
    fmt.Printf("File name %s\n", name[0])
    // Copy the file data to my buffer
    io.Copy(&buf, file)
    // do something with the contents...
    // I normally have a struct defined and unmarshal into a struct, but this will
    // work as an example
    contents := buf.String()
    fmt.Println(contents)
    // I reset the buffer in case I want to use it again
    // reduces memory allocations in more intense projects
    buf.Reset()
    // do something else
    // etc write header
    return
}

原文由 reticentroot 发布,翻译遵循 CC BY-SA 4.0 许可协议

推荐问题