猿问

从golang中的缓冲读取器读取特定数量的字节

我知道bufio包中的golang中的特定功能。

func (b *Reader) Peek(n int) ([]byte, error)

Peek返回下一个n个字节,而不会使阅读器前进。字节在下一个读取调用时不再有效。如果Peek返回的字节数少于n个字节,则它还会返回一个错误,解释读取短的原因。如果n大于b的缓冲区大小,则错误为ErrBufferFull。

我需要能够从阅读器读取特定数量的字节,以使阅读器更先进。基本上,与上面的功能相同,但是它使阅读器更高级。有人知道如何做到这一点吗?


红糖糍粑
浏览 447回答 3
3回答

婷婷同学_

TLDR:my42bytes, err := ioutil.ReadAll(io.LimitReader(myReader, 42))完整答案:@monicuta提到的io.ReadFull效果很好。在这里,我提供了另一种方法。它通过链接ioutil.ReadAll和io.LimitReader在一起工作。让我们先阅读文档:$ go doc ioutil.ReadAllfunc ReadAll(r io.Reader) ([]byte, error)     ReadAll reads from r until an error or EOF and returns the data it read. A     successful call returns err == nil, not err == EOF. Because ReadAll is     defined to read from src until EOF, it does not treat an EOF from Read as an     error to be reported. $ go doc io.LimitReaderfunc LimitReader(r Reader, n int64) Reader     LimitReader returns a Reader that reads from r but stops with EOF after n     bytes. The underlying implementation is a *LimitedReader.因此,如果您想从中获取42个字节myReader,则可以执行此操作import (        "io"        "io/ioutil")func main() {        // myReader := ...        my42bytes, err := ioutil.ReadAll(io.LimitReader(myReader, 42))        if err != nil {                panic(err)        }        //...}这是与 io.ReadFull$ go doc io.ReadFullfunc ReadFull(r Reader, buf []byte) (n int, err error)    ReadFull reads exactly len(buf) bytes from r into buf. It returns the number    of bytes copied and an error if fewer bytes were read. The error is EOF only    if no bytes were read. If an EOF happens after reading some but not all the    bytes, ReadFull returns ErrUnexpectedEOF. On return, n == len(buf) if and    only if err == nil. If r returns an error having read at least len(buf)    bytes, the error is dropped.import (        "io")func main() {        // myReader := ...        buf := make([]byte, 42)        _, err := io.ReadFull(myReader, buf)        if err != nil {                panic(err)        }        //...}与相比io.ReadFull,优点是您无需手动创建buf,其中len(buf)要读取的字节数是多少,然后buf在读取时作为参数传递相反,您只是简单地告诉io.LimitReader您要从中获取最多42个字节myReader,然后调用ioutil.ReadAll以读取所有字节,并将结果作为字节片返回。如果成功,则保证返回的切片长度为42。
随时随地看视频慕课网APP

相关分类

Go
我要回答