在go语言中实现从网络浏览器向服务器上传文件示例
Go  /  管理员 发布于 9个月前   332
使用Go 和HTML 来实现文件上传功能:
一个简单的 HTML 文件上传表单,用于将文件上传到服务器,
在服务器端使用 Go 程序接收上传的文件,
在服务器上验证上传文件的位置和内容。
1:向服务器上传文件的 HTML 文件上传表单
- 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>
注意:
输入 id 文件将由 uploadHandler 的 FormFile 函数捕获。
2:服务器端接收上传文件的 Go 程序
- 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)
}
上面的代码使用 FormFile 函数处理 POST 数组并关注文件输入
在服务器上运行 receive.go
> go run receive.go
浏览 goupload.html,上传您选择的文件。
上传的文件将命名为 uploadedfile
3:在服务器上验证上传文件的位置和内容。
使用 ls 命令查看文件是否上传到/tmp,使用 cat 查看文件内容。
有关如何验证或检测上传文件类型的更多信息,请访问
https://www.zongscan.com/demo333/96704.html
参考资料:
http://golang.org/pkg/net/http/
123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..路人 在
php中使用hyperf框架调用讯飞星火大模型实现国内版chatgpt功能示例中评论 教程很详细,如果加个前端chatgpt对话页面就完美了..Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号