在 Go 中实现 Beanstalkd 客户端时,需要读取由换行符分隔的多行响应(n) 和回车符 (r)。默认函数 bufio.ReadLine 仅支持 n 分隔。
要读取直到 CRLF 分隔符,您可以将 bufio.Scanner 与自定义 SplitFunc 函数结合使用:
<code class="go">import ( "bufio" "fmt" "io" "bytes" ) func ScanCRLF(data []byte, atEOF bool) (advance int, token []byte, err error) { if atEOF && len(data) == 0 { return 0, nil, nil } if i := bytes.Index(data, []byte{'\r', '\n'}); i >= 0 { return i + 2, dropCR(data[0:i]), nil } if atEOF { return len(data), dropCR(data), nil } return 0, nil, nil }</code>
在这种情况下,dropCR 会从令牌中删除尾随的“r”字符。
然后您可以使用带有 ScanCRLF 函数的 bufio.Scanner 来读取数据:
<code class="go">scanner := bufio.NewScanner(this.reader) scanner.Split(ScanCRLF) for scanner.Scan() { fmt.Println(scanner.Text()) }</code>
或者,bufio.NewReaderSize 可用于读取特定长度:
<code class="go">var nr_of_bytes int nr_of_bytes, _ = strconv.Atoi(res) buf := make([]byte, nr_of_bytes) _, _ = io.ReadAtLeast(this.reader,buf, nr_of_bytes)</code>
以上是如何在 Go 中使用 CR/LF 分隔符读取多行响应?的详细内容。更多信息请关注PHP中文网其他相关文章!