Golang : bufio.NewReader.ReadLine to read file line by line
In the previous tutorial on how to read file line by line with bufio.NewScanner()
example. The previous example that use bufio.NewScanner()
will throw token too long error message if attempt to read a very large file. You can see the details here.
This tutorial will show you another way to read file line by line, but with bufio.NewReader()
and ReadLine()
method instead.
package main
import (
"bufio"
"flag"
"fmt"
"io"
"os"
)
func main() {
flag.Parse()
filename := flag.Arg(0)
file, err := os.Open(filename)
if err != nil {
panic(err)
}
defer file.Close()
reader := bufio.NewReader(file)
for {
line, _, err := reader.ReadLine()
if err == io.EOF {
break
}
fmt.Printf("%s \n", line)
}
}
Go run this file with the filename as 1st parameter and it will print out each line to the screen.
Happy coding!
References :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+9.7k Golang : Get current, epoch time and display by year, month and day
+4.2k Javascript : How to show different content with noscript?
+5.6k Golang : Error handling methods
+6.8k Golang : Gargish-English language translator
+12.4k Golang : HTTP response JSON encoded data
+11.5k Golang : Concurrency and goroutine example
+6.7k Default cipher that OpenSSL used to encrypt a PEM file
+9.1k Golang : How to get garbage collection data?
+17.4k Golang : Clone with pointer and modify value
+13.5k Generate salted password with OpenSSL example
+22.7k Golang : simulate tail -f or read last line from log file example
+6.5k Golang : Check if password length meet the requirement