Golang : Read binary file into memory
Reading a binary file content into memory for further manipulation is easy with Go. In this tutorial, we will show how to read a binary file into buffer(memory). Go has a standard library package (http://golang.org/pkg/bufio/) to handle this kind of requirement.
The code below will just show you how to read the file content into memory. What you want to do next with the file content is up to you.
readbinaryfile.go
package main
import (
"os"
"bufio"
)
func main() {
file, err := os.Open("binary.dat")
if err != nil {
fmt.Println(err)
return
}
defer file.Close()
info, err := file.Stat()
if err != nil {
return nil, err
}
// calculate the bytes size
var size int64 = info.Size()
bytes := make([]byte, size)
// read into buffer
buffer := bufio.NewReader(file)
_,err = buffer.Read(bytes)
}
Reference :
See also : Golang : Read file with ioutil
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
+8.7k Golang : automatically figure out array length(size) with three dots
+4.4k Adding Skype actions such as call and chat into web page examples
+13.7k Golang : Reverse IP address for reverse DNS lookup example
+11k Golang : Fix fmt.Scanf() on Windows will scan input twice problem
+39.7k Golang : UDP client server read write example
+3.1k Golang : Fix go-cron set time not working issue
+5.5k Javascript : How to replace HTML inside <div>?
+18.3k Golang : Implement getters and setters
+4.9k Golang : Experimental Jawi programming language
+4.6k Which content-type(MIME type) to use for JSON data
+8.4k Golang : Progress bar with ∎ character