热门标签
更多>
搜索结果
查询Tags标签: ioutil,共有 2条记录-
go io/ioutil ioutil.ReadAll(res.Body) 和 http.Get()
package mainimport ( "fmt" "io/ioutil" "net/http" ) func main() {res, err := http.Get("https://www.baidu.com")if err != nil {fmt.Println("get err:", err)return}data, err := ioutil.ReadAll(res.Body)if e…
2022/3/21 6:29:50 人评论 次浏览 -
go读文件操作实战
一 实战1 1 需求 读取文件的内容并显示在终端(带缓冲区的方式),使用 os.Open, file.Close, bufio.NewReader(),reader.ReadString 函数和方法。 2 代码 package mainimport ("bufio""fmt""io""os" )func main() {// 打开文件// …
2021/5/1 18:25:36 人评论 次浏览