public class HttpClientUtils extends Object
Modifier and Type | Method and Description |
---|---|
static void |
closeQuietly(CloseableHttpResponse response)
Unconditionally close a response.
|
static void |
closeQuietly(HttpClient httpClient)
Unconditionally close a httpClient.
|
static void |
closeQuietly(org.apache.http.HttpResponse response)
Unconditionally close a response.
|
public static void closeQuietly(org.apache.http.HttpResponse response)
Example Code:
HttpResponse httpResponse = null; try { httpResponse = httpClient.execute(httpGet); } catch (Exception e) { // error handling } finally { HttpClientUtils.closeQuietly(httpResponse); }
response
- the HttpResponse to release resources, may be null or already
closed.public static void closeQuietly(CloseableHttpResponse response)
Example Code:
HttpResponse httpResponse = null; try { httpResponse = httpClient.execute(httpGet); } catch (Exception e) { // error handling } finally { HttpClientUtils.closeQuietly(httpResponse); }
response
- the HttpResponse to release resources, may be null or already
closed.public static void closeQuietly(HttpClient httpClient)
Example Code:
HttpClient httpClient = HttpClients.createDefault(); try { httpClient.execute(request); } catch (Exception e) { // error handling } finally { HttpClientUtils.closeQuietly(httpClient); }
httpClient
- the HttpClient to close, may be null or already closed.Copyright © 1999–2022 The Apache Software Foundation. All rights reserved.