GO语言"encoding/binary"包中"Read"函数的用法及代码示例。
用法:
func Read(r io.Reader, order ByteOrder, data any) error
读取将结构化二进制数据从 r 读取到数据中。数据必须是指向固定大小值或固定大小值切片的指针。从 r 读取的字节使用指定的字节顺序解码并写入数据的连续字段。解码布尔值时,零字节被解码为假,任何其他非零字节被解码为真。读入结构时,会跳过带有空白 (_) 字段名称的字段的字段数据;即,空白字段名称可用于填充。读入结构时,必须导出所有非空白字段,否则 Read 可能会出现Panics。
仅当未读取任何字节时,该错误才是 EOF。如果在读取部分但不是全部字节后发生 EOF,则 Read 返回 ErrUnexpectedEOF
例子:
package main
import (
"bytes"
"encoding/binary"
"fmt"
)
func main() {
var pi float64
b := []byte{0x18, 0x2d, 0x44, 0x54, 0xfb, 0x21, 0x09, 0x40}
buf := bytes.NewReader(b)
err := binary.Read(buf, binary.LittleEndian, &pi)
if err != nil {
fmt.Println("binary.Read failed:", err)
}
fmt.Print(pi)
}
输出:
3.141592653589793
示例(多):
package main
import (
"bytes"
"encoding/binary"
"fmt"
)
func main() {
b := []byte{0x18, 0x2d, 0x44, 0x54, 0xfb, 0x21, 0x09, 0x40, 0xff, 0x01, 0x02, 0x03, 0xbe, 0xef}
r := bytes.NewReader(b)
var data struct {
PI float64
Uate uint8
Mine [3]byte
Too uint16
}
if err := binary.Read(r, binary.LittleEndian, &data); err != nil {
fmt.Println("binary.Read failed:", err)
}
fmt.Println(data.PI)
fmt.Println(data.Uate)
fmt.Printf("% x\n", data.Mine)
fmt.Println(data.Too)
}
输出:
3.141592653589793 255 01 02 03 61374
相关用法
- GO ReadMessage用法及代码示例
- GO Read用法及代码示例
- GO ReadFile用法及代码示例
- GO Reader.Multistream用法及代码示例
- GO ReadAtLeast用法及代码示例
- GO Reader.Len用法及代码示例
- GO Reader用法及代码示例
- GO ReadDir用法及代码示例
- GO ReadFull用法及代码示例
- GO Reader.ReadAll用法及代码示例
- GO 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用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Read。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。