How to convert a byte[] to io.Reader in Go?

How to convert a byte[] to io.Reader in Go directly?

You can use the NewReader() func from the bytes package of Go to convert bytes to io.Reader.

For example,

reader := bytes.NewReader(thebytes)

Eric Ma

Eric is a systems guy. Eric is interested in building high-performance and scalable distributed systems and related technologies. The views or opinions expressed here are solely Eric's own and do not necessarily represent those of any third parties.

Leave a Reply

Your email address will not be published. Required fields are marked *