The best way to get a string from a Writer

io go
46,301

If your function accepts an io.Writer, you can pass a *bytes.Buffer to capture the output.

// import "bytes"
buf := new(bytes.Buffer)
f(buf)
buf.String() // returns a string of what was written to it

If it requires an http.ResponseWriter, you can use a *httptest.ResponseRecorder. A response recorder holds all information that can be sent to a ResponseWriter, but the body is just a *bytes.Buffer.

// import "net/http/httptest"
r := httptest.NewRecorder()
f(r)
r.Body.String() // r.Body is a *bytes.Buffer
Share:
46,301
froderik
Author by

froderik

Just a developer....

Updated on July 05, 2022

Comments

  • froderik
    froderik about 2 years

    I have a piece of code that returns a web page using the built-in template system. It accepts a ResponseWriter to which the resulting markup is written. I now want to get to the markup as a string and put it in a database in some cases. I factored out a method that accepts a normal Writer instead of a ResponseWriter and am now trying to get to the written content. Aha - a Pipe may be what I need and then I can get the string with ReadString from the bufio library. But it turns out that the PipeReader coming out from the pipe is not compatible with Reader (that I would need for the ReadString method). W00t. Big surprise. So I could just read into byte[]s using the PipeReader but it feels a bit wrong when ReadString is there.

    So what would be the best way to do it? Should I stick with the Pipe and read bytes or is there something better that I haven't found in the manual?

  • froderik
    froderik over 11 years
    thanks - much nicer than my attempt. I suspected there would be something easier than what I did.
  • elkelk
    elkelk almost 8 years
    Making a string vs converting from bytes to the written string is not the same thing.
  • FinalState
    FinalState about 7 years
    At least made me smile )