Golang(Go语言)读取文件基本用法

前端之家收集整理的这篇文章主要介绍了Golang(Go语言)读取文件基本用法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
需要用到os和bufio包
   
   
import "os""bufio"
用os.Open打开一个文件,用bufio.NewReader来读取文件
file, err := os.Open("input.dat")if err!= nil { fmt.Println"Failed to open")return}defer file.Close()reader bufio.NewReader(for str reader.ReadString'\n' //每次读取一行break// 读完或发生错误.Printfstr)}

猜你在找的Go相关文章