Golang : Convert(cast) bytes.Buffer or bytes.NewBuffer type to io.Reader
Problem :
You need to convert or type cast bytes.Buffer
or bytes.NewBuffer
type to io.Reader
to use in io.MultiReader()
function because of this error :
cannot use buffer_slice (type []*bytes.Buffer) as type io.Reader in argument to io.MultiReader: []*bytes.Buffer does not implement io.Reader (missing Read method).
Solution :
Wrap the bytes.Buffer
with io.Reader array
. For example :
package main
import (
"bytes"
"fmt"
"io"
"io/ioutil"
)
func main() {
readerBuffer := bytes.NewBuffer([]byte("abcdefghijkl"))
readerBuffer2 := bytes.NewBuffer([]byte("mnopqrstuvwxyz"))
buff := []io.Reader{readerBuffer, readerBuffer2} // <------ here
combined := io.MultiReader(buff...)
data, _ := ioutil.ReadAll(combined)
fmt.Println(string(data))
}
or
package main
import (
"bytes"
"fmt"
"io"
"io/ioutil"
)
func main() {
//readerBuffer := bytes.NewBuffer([]byte("abcdefghijkl"))
readerBuffer := &bytes.Buffer{}
readerBuffer.Write([]byte("abcdefghijkl"))
//readerBuffer2 := bytes.NewBuffer([]byte("mnopqrstuvwxyz"))
readerBuffer2 := &bytes.Buffer{}
readerBuffer2.Write([]byte("mnopqrstuvwxyz"))
buff := []io.Reader{readerBuffer, readerBuffer2} // <------ here
combined := io.MultiReader(buff...)
data, _ := ioutil.ReadAll(combined)
fmt.Println(string(data))
}
Reference :
https://socketloop.com/references/golang-io-multireader-function-example
See also : Golang : Convert(cast) []byte to io.Reader type
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 : Inject/embed Javascript before sending out to browser example
+17.5k Golang : Iterate linked list example
+13.1k Golang : Verify token from Google Authenticator App
+5.4k Golang : Frobnicate or tweaking a string example
+20.4k Golang : Convert date string to variants of time.Time type examples
+7.5k Golang : Example of how to detect which type of script a word belongs to
+11.7k Golang : Clean formatting/indenting or pretty print JSON result
+12k Golang : 2 dimensional array example
+22.4k Golang : untar or extract tar ball archive example
+9.4k Golang : Populate slice with sequential integers example
+19.2k Golang : How to count the number of repeated characters in a string?
+10.7k Golang : Create Temporary File