public class HttpClientUtils extends Object
HttpResponse
s.Modifier and Type | Method and Description |
---|---|
static void |
closeQuietly(CloseableHttpClient httpClient)
Unconditionally close a httpClient.
|
static void |
closeQuietly(CloseableHttpResponse response)
Unconditionally close a response.
|
static void |
closeQuietly(HttpClient httpClient)
Deprecated.
(4.3) do not use.
|
static void |
closeQuietly(HttpResponse response)
Unconditionally close a response.
|
public static void closeQuietly(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.@Deprecated public static void closeQuietly(HttpClient httpClient)
Example Code:
HttpClient httpClient = null; try { httpClient = new DefaultHttpClient(...); } catch (Exception e) { // error handling } finally { HttpClientUtils.closeQuietly(httpClient); }
httpClient
- the HttpClient to close, may be null or already closed.public static void closeQuietly(CloseableHttpClient httpClient)
Example Code:
CloseableHttpClient httpClient = HttpClients.createDefault(); try { ... } catch (Exception e) { // error handling } finally { HttpClientUtils.closeQuietly(httpClient); }
httpClient
- the HttpClient to close, may be null or already closed.Copyright © 1999-2013 The Apache Software Foundation. All Rights Reserved.