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.1k Prevent Write failed: Broken pipe problem during ssh session with screen command
+21.9k Golang : Join arrays or slices example
+28k Golang : Connect to database (MySQL/MariaDB) server
+12.3k Elastic Search : Return all records (higher than default 10)
+5.2k Unix/Linux : How to archive and compress entire directory ?
+6.5k Elasticsearch : Shutdown a local node
+7.3k Golang : Process json data with Jason package
+5.7k Golang : Fix opencv.LoadHaarClassifierCascade The node does not represent a user object error
+20.3k Golang : Pipe output from one os.Exec(shell command) to another command
+26.6k Golang : Convert file content into array of bytes
+5.3k Javascript : How to loop over and parse JSON data?