Welcome To Golang By Example

Menu
  • Home
  • Blog
Menu

Read a large file Line by Line in Go (Golang)

Posted on October 19, 2023November 12, 2023 by admin

When it comes to reading large files, obviously we don’t want to load the entire file in memory. bufio package in golang comes to the rescue when reading large files. Let’s say we have a sample.txt file with below contents

This is an example
to show how
to read file
line by line.

Here is the program:

package main
import (
"bufio"
"fmt"
"log"
"os"
)
func main(){
LinebyLineScan()
}
func LinebyLineScan() {
file, err := os.Open("./sample.txt")
if err != nil {
log.Fatal(err)
}
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
fmt.Println(scanner.Text())
}
if err := scanner.Err(); err != nil {
log.Fatal(err)
}
}

Output:

This is an example
to show how
to read file
line by line.

Note however bufio.Scanner has max buffer size 64*1024 bytes which means in case you file has any line greater than the size of 64*1024, then it will give the error

bufio.Scanner: token too long
  • file
  • go
  • largefile
  • line by line
  • linebyline
  • Popular Articles

    Golang Comprehensive Tutorial Series

    All Design Patterns in Go (Golang)

    Slice in golang

    Variables in Go (Golang) – Complete Guide

    OOP: Inheritance in GOLANG complete guide

    Using Context Package in GO (Golang) – Complete Guide

    All data types in Golang with examples

    Understanding time and date in Go (Golang) – Complete Guide

    ©2023 Welcome To Golang By Example | Design: Web XP