我刚开始使用go并且想知道,是否可以将[]字节切片转换为io.Reader。如ioutil.ReadAll所示,可以使用其他方式
如果没有,可以使用code.google.com/p/go.net/html.Tokenizer以某种方式使用字节切片吗?
答案 0 :(得分:9)
io.Reader示例:
http://play.golang.org/p/P0VbE8UFpC
package main
import (
"bytes"
"encoding/base64"
"io"
"os"
)
func main() {
// A Buffer can turn a string or a []byte into an io.Reader.
buf := bytes.NewBuffer([]byte("R29waGVycyBydWxlIQ=="))
dec := base64.NewDecoder(base64.StdEncoding, buf)
io.Copy(os.Stdout, dec)
}
答案 1 :(得分:4)