1 回答
TA贡献1828条经验 获得超3个赞
ioutil.ReadFile() 不支持 http。
如果您查看源代码 ( https://golang.org/src/io/ioutil/ioutil.go?s=1503:1549#L42 ),请使用 os.Open 打开文件。
我想我可以做这个编码。
package main
import (
"io"
"net/http"
"os"
)
func main() {
fileUrl := "http://www.pdf995.com/samples/pdf.pdf"
if err := DownloadFile("example.pdf", fileUrl); err != nil {
panic(err)
}
}
func DownloadFile(filepath string, url string) error {
// Get the data
resp, err := http.Get(url)
if err != nil {
return err
}
defer resp.Body.Close()
// Create the file
out, err := os.Create(filepath)
if err != nil {
return err
}
defer out.Close()
// Write the body to file
_, err = io.Copy(out, resp.Body)
return err
}
但是,go playgound 不是协议(go error dial tcp: Protocol not available)。
所以,你必须在电脑上做。
- 1 回答
- 0 关注
- 162 浏览
添加回答
举报