码迷,mamicode.com
首页 > 其他好文 > 详细

golang 按字符读取文件

时间:2018-01-25 00:23:40      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:rgs   read   ack   put   port   inpu   exit   scan   code   

package main import ( "bufio" "fmt" "io/ioutil" "os" "strings" ) func main() { arguments := os.Args if len(arguments) == 1 { fmt.Println("Not enough arguments!") os.Exit(1) } input := arguments[1] buf, err := ioutil.ReadFile(input) if err != nil { fmt.Println(err) os.Exit(1) } in := string(buf) s := bufio.NewScanner(strings.NewReader(in)) s.Split(bufio.ScanRunes) for s.Scan() { fmt.Print(s.Text()) } }

golang 按字符读取文件

标签:rgs   read   ack   put   port   inpu   exit   scan   code   

原文地址:http://blog.51cto.com/xwandrew/2064835

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!