Golang : Read from buffered reader until specific number of bytes
Problem :
You have a buffered reader streaming in with data. You want to limit each read to a specific size for processing purpose before advancing to the next read.
Solution :
Specify the size of the buffer (p) to the limit you want per read. Use io.ReadFull to consume data from the buffered reader and fill up to the buffer (p in the code example below) max size.
package main
import (
"fmt"
"io"
"strings"
)
func main() {
reader := strings.NewReader("Profession.socketloop.com says Hello World!")
// the read is limited by the size of p
p := make([]byte, 32)
fmt.Printf("Read until %d bytes and advance the reader\n", len(p))
n, err := io.ReadFull(reader, p) // read all bytes into buffer
// NOTE : this is just a simple tutorial to demonstrate how to limit your read to certain
// size. You might want to turn this into a loop
// to read the buffered reader until EOF
fmt.Printf("\n%s ", p)
fmt.Printf("\n Number of bytes copied : %d with error : %v\n", n, err)
}
Output :
Read until 32 bytes and advance the reader
Profession.socketloop.com says H
Number of bytes copied : 32 with error :
NOTE : this is just a simple tutorial to demonstrate how to limit your read to certain size with a fixed size strings buffered reader. You might want to turn this into a loop to continuously read the buffered reader stream data until EOF.
Reference :
See also : Golang : Read a file line by line
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.8k Fix sudo yum hang problem with no output or error messages
+30.2k Golang : How to verify uploaded file is image or allowed file types
+4.6k MariaDB/MySQL : How to get version information
+7.6k Golang : get the current working directory of a running program
+6.1k Golang & Javascript : How to save cropped image to file on server
+17.9k Golang : How to log each HTTP request to your web server?
+5.8k Facebook : How to force facebook to scrape latest URL link data?
+10.9k Golang : Create Temporary File
+12.2k Golang : Encrypt and decrypt data with x509 crypto
+7.3k Golang : How to detect if a sentence ends with a punctuation?
+5.4k Golang : If else example and common mistake
+10.4k Fix ERROR 1045 (28000): Access denied for user 'root'@'ip-address' (using password: YES)