golang bytesBuffer 改为 string 无法输出
要将*bytes.Buffer类型转换为string类型并输出,可以使用buffer.String()方法,它会返回*bytes.Buffer中的内容作为字符串。以下是一个示例:
package main
import (
"bytes"
"fmt"
)
func main() {
buffer := bytes.NewBufferString("Hello, World!")
str := buffer.String()
fmt.Println(str)
}
输出结果为:
Hello, World!
原文地址: https://www.cveoy.top/t/topic/i4ki 著作权归作者所有。请勿转载和采集!