Golang : Read file
This is the most basic way of how to read a file into buffer and display its content chunk by chunk. This example read plain text file, if you are reading a binary file... change fmt.Println(string(buffer[:n]))
to fmt.Println(buffer[:n])
(without the string).
For now, this is the most basic example of reading a file in Go
package main
import (
"fmt"
"io"
"os"
)
func main() {
file, err := os.Open("sometextfile.txt")
if err != nil {
fmt.Println(err)
return
}
defer file.Close()
// create a buffer to keep chunks that are read
buffer := make([]byte, 1024)
for {
// read a chunk
n, err := file.Read(buffer)
if err != nil && err != io.EOF { panic(err) }
if n == 0 { break }
// out the file content
fmt.Println(string(buffer[:n]))
}
}
See also : Golang : How to read CSV file
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
+6.1k Golang : Experimenting with the Rejang script
+7.2k Golang : Get environment variable
+41.5k Golang : Convert string to array/slice
+18k Golang : Get all upper case or lower case characters from string example
+26.5k Golang : Get executable name behind process ID example
+17k Golang : Get the IPv4 and IPv6 addresses for a specific network interface
+6.1k Golang : Dealing with backquote
+22.8k Golang : Set and Get HTTP request headers example
+8.3k Golang : Oanda bot with Telegram and RSI example
+9k Golang : Inject/embed Javascript before sending out to browser example
+4.7k Javascript : Access JSON data example
+4.8k Which content-type(MIME type) to use for JSON data