public class HttpClientUtils extends Object
HttpResponse
s and HttpClient
s.Modifier and Type | Method and Description |
---|---|
static void |
closeQuietly(HttpClient httpClient)
Unconditionally close a httpClient.
|
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(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.Copyright © 1999–2013 The Apache Software Foundation. All rights reserved.