如何在Go中将byte []转换为io.Reader?

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

如何将 byte [] 转换为io。 直接在Go中阅读 ?

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

您可以使用NewReader()从FUNC bytes 包围棋的转换bytesio.Reader

For example,

例如,

reader := bytes.NewReader(thebytes)
Answered by Eric Z Ma.
埃里克·马(Eric Z Ma)回答。

翻译自: https://www.systutorials.com/how-to-convert-a-byte-to-io-reader-in-go/

你可能感兴趣的:(java,javascript,unity,base64,md5)