dongxu2398 2016-06-18 16:33
浏览 1556
已采纳

在golang中使用http.Client.Get方法和Body.Read()方法处理时,EOF错误导致终止

I am using an http client to get a json body, and read it to a byte array like

client := new(http.Client)
client.Timeout = time.Second * 10
GetJobJson, err := client.Get(joblocation.String()) //where joblocation is of type *url.Url
if err != nil {
    errorlog.Err.Println("Error getting job from", joblocation.String(), err)
    return false, http.StatusBadRequest, nil
}
buff := make([]byte, GetJobJson.ContentLength)
length, err := GetJobJson.Body.Read(buff) //This returns an EOF error
if err != nil {
    errorlog.Err.Println("Error reading request body of length", length, "vs contentlength", GetJobJson.ContentLength, err)
    return false, http.StatusBadRequest, nil
}

In the above code, GetJobJson.Body is of type io.ReadCloser, which implements Reader, having Read method, which I am using here as

length, err := GetJobJson.Body.Read(buff) 

But since I am handling error here, it is returning an error which says EOF.

The http endpoint to where I am sending the request is running an apache server, mentioning it here since I am not sure if it matters.

If I am not handling the error, I get the complete json body, which is there in the remote server, and the program continues to work as expected.

What is the best way to handle this? Is the Read method that I use, is bad for this situation? Please advise.

Thank you.

  • 写回答

1条回答 默认 最新

  • dorpbn1027 2016-06-18 19:01
    关注

    Handing io.EOF is part of the contract of using an io.Reader, and it indicates that there's nothing more to read. If you have read what you expected to read, there is no error. If you look at functions like ioutil.ReadAll, you'll see that it handles the EOF, and returns no error at the end of the stream.

    You may also consider not checking for ContentLength, as it precludes you from handing chunked responses.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥200 相机拍直接转存到电脑上 立拍立穿无线局域网传
  • ¥15 (关键词-电路设计)
  • ¥15 如何解决MIPS计算是否溢出
  • ¥15 vue中我代理了iframe,iframe却走的是路由,没有显示该显示的网站,这个该如何处理
  • ¥15 操作系统相关算法中while();的含义
  • ¥15 CNVcaller安装后无法找到文件
  • ¥15 visual studio2022中文乱码无法解决
  • ¥15 关于华为5g模块mh5000-31接线问题
  • ¥15 keil L6007U报错
  • ¥15 webapi 发布到iis后无法访问