如何在Go中读取至少N个字节
在 Go 中读取文件时如何确保至少获得 n 个字节?该函数似乎返回您获得的字节数,但我宁愿等到有更多字节可用。无需进行大量手动管道操作就可以实现这一点吗?
How do you ensure you get at least n bytes when reading from a file in Go? The function seems to return the number of bytes you got, but I would rather just wait until more bytes are available. Is this possible without doing a bunch of manual plumbing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 io.ReadAtLeast() 函数: http://golang.org/pkg/io/#ReadAtLeast
Use io.ReadAtLeast() function: http://golang.org/pkg/io/#ReadAtLeast