Skip to content

Instantly share code, notes, and snippets.

@tejainece
Created April 2, 2014 18:29
Show Gist options
  • Select an option

  • Save tejainece/9940151 to your computer and use it in GitHub Desktop.

Select an option

Save tejainece/9940151 to your computer and use it in GitHub Desktop.
Golang: io.Reader stream to string or byte slice
import "bytes"
func StreamToByte(stream io.Reader) []byte {
buf := new(bytes.Buffer)
buf.ReadFrom(stream)
return buf.Bytes()
}
func StreamToString(stream io.Reader) string {
buf := new(bytes.Buffer)
buf.ReadFrom(stream)
return buf.String()
}
@hybnew
Copy link
Copy Markdown

hybnew commented Jan 13, 2021

nice

@amanbolat
Copy link
Copy Markdown

io.Copy is much faster than using ReadFrom method.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment