@Contract(threading=STATELESS) public abstract class AbstractHttpClientResponseHandler<T> extends Object implements HttpClientResponseHandler<T>
HttpClientResponseHandler that works with the response entity
for successful (2xx) responses. If the response code was >= 300, the response
body is consumed and an HttpResponseException is thrown.
If this is used with
HttpClient.execute(
org.apache.hc.core5.http.ClassicHttpRequest, HttpClientResponseHandler),
HttpClient may handle redirects (3xx responses) internally.
| 构造器和说明 |
|---|
AbstractHttpClientResponseHandler() |
| 限定符和类型 | 方法和说明 |
|---|---|
abstract T |
handleEntity(HttpEntity entity)
Handle the response entity and transform it into the actual response
object.
|
T |
handleResponse(ClassicHttpResponse response)
Read the entity from the response body and pass it to the entity handler
method if the response was successful (a 2xx status code).
|
public T handleResponse(ClassicHttpResponse response) throws IOException
HttpResponseException.handleResponse 在接口中 HttpClientResponseHandler<T>response - The response to processIOException - in case of a problem or the connection was abortedpublic abstract T handleEntity(HttpEntity entity) throws IOException
IOExceptionCopyright © 2023. All rights reserved.