GO语言"io"包中"ReadAll"函数的用法及代码示例。
用法:
func ReadAll(r Reader)([]byte, error)
ReadAll 从 r 读取直到出现错误或 EOF 并返回它读取的数据。成功的调用返回 err == nil,而不是 err == EOF。因为 ReadAll 被定义为从 src 读取直到 EOF,所以它不会将 Read 中的 EOF 视为要报告的错误。
例子:
package main
import (
"fmt"
"io"
"log"
"strings"
)
func main() {
r := strings.NewReader("Go is a general-purpose language designed with systems programming in mind.")
b, err := io.ReadAll(r)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%s", b)
}
输出:
Go is a general-purpose language designed with systems programming in mind.
相关用法
- GO ReadAtLeast用法及代码示例
- GO ReadMessage用法及代码示例
- GO Read用法及代码示例
- GO ReadFile用法及代码示例
- GO Reader.Multistream用法及代码示例
- GO Reader.Len用法及代码示例
- GO Reader用法及代码示例
- GO ReadDir用法及代码示例
- GO ReadFull用法及代码示例
- GO Reader.ReadAll用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
- GO ResponseRecorder用法及代码示例
- GO ReverseBytes64用法及代码示例
- GO ReverseBytes16用法及代码示例
- GO Regexp.ReplaceAllLiteralString用法及代码示例
- GO Regexp.FindStringSubmatch用法及代码示例
- GO Regexp.FindAllString用法及代码示例
- GO Regexp.ExpandString用法及代码示例
- GO ResponseWriter用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 ReadAll。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。