Golang : Upload file from web browser to server
Recently, I came across a question on Go programming language Facebook group on how to upload file with http://golang.org/*
In this tutorial, we will use Go and HTML to achieve the following :
A simple HTML file upload form to upload file to server
Go program on server side to receive the uploaded file
Verify the uploaded file location and content on server.
1) HTML file upload form to upload file to server - goupload.html
<html>
<title>Go upload</title>
<body>
<form action="http://localhost:8080/receive" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file">
<input type="submit" name="submit" value="Submit">
</form>
</body>
</html>
NOTE : The input id file
will be captured by the uploadHandler's FormFile function.
2) Go program on server side to receive the uploaded file - receive.go
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func uploadHandler(w http.ResponseWriter, r *http.Request) {
// the FormFile function takes in the POST input id file
file, header, err := r.FormFile("file")
if err != nil {
fmt.Fprintln(w, err)
return
}
defer file.Close()
out, err := os.Create("/tmp/uploadedfile")
if err != nil {
fmt.Fprintf(w, "Unable to create the file for writing. Check your write access privilege")
return
}
defer out.Close()
// write the content from POST to the file
_, err = io.Copy(out, file)
if err != nil {
fmt.Fprintln(w, err)
}
fmt.Fprintf(w, "File uploaded successfully : ")
fmt.Fprintf(w, header.Filename)
}
func main() {
http.HandleFunc("/", uploadHandler)
http.ListenAndServe(":8080", nil)
}
the code above uses the FormFile function to process the POST array and focus on file
input
run receive.go at the server
> go run receive.go
browse goupload.html and upload a file of your choice. The uploaded file will be named uploadedfile
3) Verify the uploaded file location and content on the server.
See if the file is uploaded to the /tmp
with ls
command and cat
to see the content
Visit https://www.socketloop.com/tutorials/golang-how-to-verify-uploaded-file-is-image-or-allowed-file-types for further information on how to verify or detect the uploaded file type.
References:
See also : Upload multiple files with Go
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+21.6k Golang : Join arrays or slices example
+9.4k Golang : interface - when and where to use examples
+4.4k Javascript : Access JSON data example
+28.8k Golang : Saving(serializing) and reading file with GOB
+10.6k Golang : How to transmit update file to client by HTTP request example
+16.7k Golang : Get number of CPU cores
+14.1k Golang : How to filter a map's elements for faster lookup
+5.2k Golang : fmt.Println prints out empty data from struct
+15.1k Golang : invalid character ',' looking for beginning of value
+14.7k Golang : package is not in GOROOT during compilation
+9.4k Golang : Quadratic example
+6.4k Golang : Experimental emojis or emoticons icons programming language