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

在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.

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

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?