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
+10.2k Golang : cannot assign type int to value (type uint8) in range error
+17.4k Golang : Clone with pointer and modify value
+7.1k Golang : Dealing with postal or zip code example
+25.1k Golang : Get current file path of a file or executable
+17.3k Golang : Get future or past hours, minutes or seconds
+36k Golang : Save image to PNG, JPEG or GIF format.
+6.7k Mac/Linux/Windows : Get CPU information from command line
+6.8k Golang : How to setup a disk space used monitoring service with Telegram bot
+15.4k Golang : Intercept Ctrl-C interrupt or kill signal and determine the signal type
+14.7k Golang : Basic authentication with .htpasswd file
+17.1k Golang : When to use init() function?
+12.9k Golang : Convert(cast) uintptr to string example