Get HTTP code from org.apache.http.HttpResponse

后端 未结 4 1747
执笔经年
执笔经年 2021-02-03 16:38

I\'m using the org.apache.http.HttpResponse class in my Java application, and I need to be able to get the HTTP status code. If I used .toString() on i

4条回答
  •  甜味超标
    2021-02-03 17:15

    Use HttpResponse.getStatusLine(), which returns a StatusLine object containing the status code, protocol version and "reason".

提交回复
热议问题